[READ-ONLY] Mirror of https://github.com/shuuji3/python-extension-twister. Experimental Python C extension to generate random numbers by using Mersenne twister
0

Configure Feed

Select the types of activity you want to include in your feed.

2.1 kB 188 lines
1 2# Created by https://www.gitignore.io/api/python 3 4### Python ### 5# Byte-compiled / optimized / DLL files 6__pycache__/ 7*.py[cod] 8*$py.class 9 10# C extensions 11*.so 12 13# Distribution / packaging 14.Python 15build/ 16develop-eggs/ 17dist/ 18downloads/ 19eggs/ 20.eggs/ 21lib/ 22lib64/ 23parts/ 24sdist/ 25var/ 26wheels/ 27*.egg-info/ 28.installed.cfg 29*.egg 30MANIFEST 31 32# PyInstaller 33# Usually these files are written by a python script from a template 34# before PyInstaller builds the exe, so as to inject date/other infos into it. 35*.manifest 36*.spec 37 38# Installer logs 39pip-log.txt 40pip-delete-this-directory.txt 41 42# Unit test / coverage reports 43htmlcov/ 44.tox/ 45.coverage 46.coverage.* 47.cache 48nosetests.xml 49coverage.xml 50*.cover 51.hypothesis/ 52.pytest_cache/ 53 54# Translations 55*.mo 56*.pot 57 58# Django stuff: 59*.log 60local_settings.py 61db.sqlite3 62 63# Flask stuff: 64instance/ 65.webassets-cache 66 67# Scrapy stuff: 68.scrapy 69 70# Sphinx documentation 71docs/_build/ 72 73# PyBuilder 74target/ 75 76# Jupyter Notebook 77.ipynb_checkpoints 78 79# pyenv 80.python-version 81 82# celery beat schedule file 83celerybeat-schedule 84 85# SageMath parsed files 86*.sage.py 87 88# Environments 89.env 90.venv 91env/ 92venv/ 93ENV/ 94env.bak/ 95venv.bak/ 96 97# Spyder project settings 98.spyderproject 99.spyproject 100 101# Rope project settings 102.ropeproject 103 104# mkdocs documentation 105/site 106 107# mypy 108.mypy_cache/ 109 110### Python Patch ### 111.venv/ 112 113### Python.VirtualEnv Stack ### 114# Virtualenv 115# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/ 116[Bb]in 117[Ii]nclude 118[Ll]ib 119[Ll]ib64 120[Ll]ocal 121[Ss]cripts 122pyvenv.cfg 123pip-selfcheck.json 124 125 126# End of https://www.gitignore.io/api/python 127 128# Created by https://www.gitignore.io/api/c 129 130### C ### 131# Prerequisites 132*.d 133 134# Object files 135*.o 136*.ko 137*.obj 138*.elf 139 140# Linker output 141*.ilk 142*.map 143*.exp 144 145# Precompiled Headers 146*.gch 147*.pch 148 149# Libraries 150*.lib 151*.a 152*.la 153*.lo 154 155# Shared objects (inc. Windows DLLs) 156*.dll 157*.so 158*.so.* 159*.dylib 160 161# Executables 162*.exe 163*.out 164*.app 165*.i*86 166*.x86_64 167*.hex 168 169# Debug files 170*.dSYM/ 171*.su 172*.idb 173*.pdb 174 175# Kernel Module Compile Results 176*.mod* 177*.cmd 178.tmp_versions/ 179modules.order 180Module.symvers 181Mkfile.old 182dkms.conf 183 184 185# End of https://www.gitignore.io/api/c 186 187# User defined 188cmake-build-debug/