Skip to content

Commit b660b00

Browse files
committed
added basic .gitignore
1 parent 8250cf2 commit b660b00

File tree

1 file changed

+281
-0
lines changed

1 file changed

+281
-0
lines changed

.gitignore

Lines changed: 281 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,281 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/python
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=python
4+
5+
### Python ###
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
pip-wheel-metadata/
29+
share/python-wheels/
30+
*.egg-info/
31+
.installed.cfg
32+
*.egg
33+
MANIFEST
34+
35+
# PyInstaller
36+
# Usually these files are written by a python script from a template
37+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
38+
*.manifest
39+
*.spec
40+
41+
# Installer logs
42+
pip-log.txt
43+
pip-delete-this-directory.txt
44+
45+
# Unit test / coverage reports
46+
htmlcov/
47+
.tox/
48+
.nox/
49+
.coverage
50+
.coverage.*
51+
.cache
52+
nosetests.xml
53+
coverage.xml
54+
*.cover
55+
*.py,cover
56+
.hypothesis/
57+
.pytest_cache/
58+
pytestdebug.log
59+
60+
# Translations
61+
*.mo
62+
*.pot
63+
64+
# Django stuff:
65+
*.log
66+
local_settings.py
67+
db.sqlite3
68+
db.sqlite3-journal
69+
70+
# Flask stuff:
71+
instance/
72+
.webassets-cache
73+
74+
# Scrapy stuff:
75+
.scrapy
76+
77+
# Sphinx documentation
78+
docs/_build/
79+
doc/_build/
80+
81+
# PyBuilder
82+
target/
83+
84+
# Jupyter Notebook
85+
.ipynb_checkpoints
86+
87+
# IPython
88+
profile_default/
89+
ipython_config.py
90+
91+
# pyenv
92+
.python-version
93+
94+
# pipenv
95+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
96+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
97+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
98+
# install all needed dependencies.
99+
#Pipfile.lock
100+
101+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
102+
__pypackages__/
103+
104+
# Celery stuff
105+
celerybeat-schedule
106+
celerybeat.pid
107+
108+
# SageMath parsed files
109+
*.sage.py
110+
111+
# Environments
112+
.env
113+
.venv
114+
env/
115+
venv/
116+
ENV/
117+
env.bak/
118+
venv.bak/
119+
120+
# Spyder project settings
121+
.spyderproject
122+
.spyproject
123+
124+
# Rope project settings
125+
.ropeproject
126+
127+
# mkdocs documentation
128+
/site
129+
130+
# mypy
131+
.mypy_cache/
132+
.dmypy.json
133+
dmypy.json
134+
135+
# Pyre type checker
136+
.pyre/
137+
138+
# pytype static type analyzer
139+
.pytype/
140+
141+
# End of https://www.toptal.com/developers/gitignore/api/python
142+
# Created by https://www.toptal.com/developers/gitignore/api/python
143+
# Edit at https://www.toptal.com/developers/gitignore?templates=python
144+
145+
### Python ###
146+
# Byte-compiled / optimized / DLL files
147+
__pycache__/
148+
*.py[cod]
149+
*$py.class
150+
151+
# C extensions
152+
*.so
153+
154+
# Distribution / packaging
155+
.Python
156+
build/
157+
develop-eggs/
158+
dist/
159+
downloads/
160+
eggs/
161+
.eggs/
162+
lib/
163+
lib64/
164+
parts/
165+
sdist/
166+
var/
167+
wheels/
168+
pip-wheel-metadata/
169+
share/python-wheels/
170+
*.egg-info/
171+
.installed.cfg
172+
*.egg
173+
MANIFEST
174+
175+
# PyInstaller
176+
# Usually these files are written by a python script from a template
177+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
178+
*.manifest
179+
*.spec
180+
181+
# Installer logs
182+
pip-log.txt
183+
pip-delete-this-directory.txt
184+
185+
# Unit test / coverage reports
186+
htmlcov/
187+
.tox/
188+
.nox/
189+
.coverage
190+
.coverage.*
191+
.cache
192+
nosetests.xml
193+
coverage.xml
194+
*.cover
195+
*.py,cover
196+
.hypothesis/
197+
.pytest_cache/
198+
pytestdebug.log
199+
200+
# Translations
201+
*.mo
202+
*.pot
203+
204+
# Django stuff:
205+
*.log
206+
local_settings.py
207+
db.sqlite3
208+
db.sqlite3-journal
209+
210+
# Flask stuff:
211+
instance/
212+
.webassets-cache
213+
214+
# Scrapy stuff:
215+
.scrapy
216+
217+
# Sphinx documentation
218+
docs/_build/
219+
doc/_build/
220+
221+
# PyBuilder
222+
target/
223+
224+
# Jupyter Notebook
225+
.ipynb_checkpoints
226+
227+
# IPython
228+
profile_default/
229+
ipython_config.py
230+
231+
# pyenv
232+
.python-version
233+
234+
# pipenv
235+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
236+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
237+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
238+
# install all needed dependencies.
239+
#Pipfile.lock
240+
241+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
242+
__pypackages__/
243+
244+
# Celery stuff
245+
celerybeat-schedule
246+
celerybeat.pid
247+
248+
# SageMath parsed files
249+
*.sage.py
250+
251+
# Environments
252+
.env
253+
.venv
254+
env/
255+
venv/
256+
ENV/
257+
env.bak/
258+
venv.bak/
259+
260+
# Spyder project settings
261+
.spyderproject
262+
.spyproject
263+
264+
# Rope project settings
265+
.ropeproject
266+
267+
# mkdocs documentation
268+
/site
269+
270+
# mypy
271+
.mypy_cache/
272+
.dmypy.json
273+
dmypy.json
274+
275+
# Pyre type checker
276+
.pyre/
277+
278+
# pytype static type analyzer
279+
.pytype/
280+
281+
# End of https://www.toptal.com/developers/gitignore/api/python

0 commit comments

Comments
 (0)