Rich Bennett | a52a572 | 2017-07-26 17:31:54 -0400 | [diff] [blame] | 1 | # Byte-compiled / optimized / DLL files |
| 2 | __pycache__/ |
| 3 | *.py[cod] |
| 4 | *$py.class |
| 5 | |
| 6 | # C extensions |
| 7 | *.so |
| 8 | |
| 9 | # Distribution / packaging |
| 10 | .Python |
| 11 | build/ |
Cédric Ollivier | 3093269 | 2021-11-22 14:21:29 +0100 | [diff] [blame] | 12 | _build |
Rich Bennett | a52a572 | 2017-07-26 17:31:54 -0400 | [diff] [blame] | 13 | develop-eggs/ |
| 14 | dist/ |
| 15 | downloads/ |
| 16 | eggs/ |
| 17 | .eggs/ |
| 18 | lib/ |
| 19 | lib64/ |
| 20 | parts/ |
| 21 | sdist/ |
| 22 | var/ |
| 23 | wheels/ |
| 24 | *.egg-info/ |
| 25 | .installed.cfg |
| 26 | *.egg |
| 27 | |
| 28 | # PyInstaller |
| 29 | # Usually these files are written by a python script from a template |
| 30 | # before PyInstaller builds the exe, so as to inject date/other infos into it. |
| 31 | *.manifest |
| 32 | *.spec |
| 33 | |
Rich Bennett | a4cf27d | 2017-11-12 23:11:28 -0500 | [diff] [blame] | 34 | # aspell |
| 35 | *.new |
| 36 | *.bak |
| 37 | |
Rich Bennett | a52a572 | 2017-07-26 17:31:54 -0400 | [diff] [blame] | 38 | # Installer logs |
| 39 | pip-log.txt |
| 40 | pip-delete-this-directory.txt |
| 41 | |
| 42 | # Unit test / coverage reports |
| 43 | htmlcov/ |
| 44 | .tox/ |
| 45 | .coverage |
| 46 | .coverage.* |
| 47 | .cache |
| 48 | nosetests.xml |
| 49 | coverage.xml |
| 50 | *.cover |
| 51 | .hypothesis/ |
| 52 | |
| 53 | # Django: |
| 54 | *.log |
| 55 | local_settings.py |
| 56 | |
| 57 | # Flask: |
| 58 | instance/ |
| 59 | .webassets-cache |
| 60 | |
| 61 | # Scrapy: |
| 62 | .scrapy |
| 63 | |
| 64 | # Sphinx documentation |
| 65 | docs/_build/ |
| 66 | |
| 67 | # PyBuilder |
| 68 | target/ |
| 69 | |
| 70 | # pyenv |
| 71 | .python-version |
Denes Nemeth | eea9a62 | 2018-03-09 13:08:41 +0100 | [diff] [blame] | 72 | |
| 73 | #MacOs |
| 74 | .DS_Store |
thmsdt | 21d5941 | 2022-08-02 13:28:17 +0200 | [diff] [blame] | 75 | .vscode/ |