blob: fd94eac3fbabcfb75230cf2ae5195f24fe102908 [file] [log] [blame]
Dan Albert06f58af2020-06-22 15:10:31 -07001# From https://github.com/github/gitignore/blob/master/Python.gitignore
2
3# Byte-compiled / optimized / DLL files
4__pycache__/
5*.py[cod]
6*$py.class
7
8# C extensions
9*.so
10
11# Distribution / packaging
12.Python
13build/
14develop-eggs/
15dist/
16downloads/
17eggs/
18.eggs/
19lib/
20lib64/
21parts/
22sdist/
23var/
24wheels/
25share/python-wheels/
26*.egg-info/
27.installed.cfg
28*.egg
29MANIFEST
30
31# PyInstaller
32# Usually these files are written by a python script from a template
33# before PyInstaller builds the exe, so as to inject date/other infos into it.
34*.manifest
35*.spec
36
37# Installer logs
38pip-log.txt
39pip-delete-this-directory.txt
40
41# Unit test / coverage reports
42htmlcov/
43.tox/
44.nox/
45.coverage
46.coverage.*
47.cache
48nosetests.xml
49coverage.xml
50*.cover
51*.py,cover
52.hypothesis/
53.pytest_cache/
54cover/
55
56# Translations
57*.mo
58*.pot
59
60# Django stuff:
61*.log
62local_settings.py
63db.sqlite3
64db.sqlite3-journal
65
66# Flask stuff:
67instance/
68.webassets-cache
69
70# Scrapy stuff:
71.scrapy
72
73# Sphinx documentation
74docs/_build/
75
76# PyBuilder
77.pybuilder/
78target/
79
80# Jupyter Notebook
81.ipynb_checkpoints
82
83# IPython
84profile_default/
85ipython_config.py
86
87# pyenv
88# For a library or package, you might want to ignore these files since the code is
89# intended to run in multiple environments; otherwise, check them in:
90# .python-version
91
92# pipenv
93# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
94# However, in case of collaboration, if having platform-specific dependencies or dependencies
95# having no cross-platform support, pipenv may install dependencies that don't work, or not
96# install all needed dependencies.
97#Pipfile.lock
98
99# PEP 582; used by e.g. github.com/David-OConnor/pyflow
100__pypackages__/
101
102# Celery stuff
103celerybeat-schedule
104celerybeat.pid
105
106# SageMath parsed files
107*.sage.py
108
109# Environments
110.env
111.venv
112env/
113venv/
114ENV/
115env.bak/
116venv.bak/
117
118# Spyder project settings
119.spyderproject
120.spyproject
121
122# Rope project settings
123.ropeproject
124
125# mkdocs documentation
126/site
127
128# mypy
129.mypy_cache/
130.dmypy.json
131dmypy.json
132
133# Pyre type checker
134.pyre/
135
136# pytype static type analyzer
137.pytype/
138
139# Cython debug symbols
140cython_debug/