Skip to content

Commit 6978d6c

Browse files
committed
Create .gitignore
1 parent 6582ed6 commit 6978d6c

File tree

1 file changed

+85
-0
lines changed

1 file changed

+85
-0
lines changed

.gitignore

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Installer logs
7+
pip-log.txt
8+
pip-delete-this-directory.txt
9+
10+
# Unit test / coverage reports
11+
htmlcov/
12+
.tox/
13+
.nox/
14+
.coverage
15+
.coverage.*
16+
.cache
17+
nosetests.xml
18+
coverage.xml
19+
*.cover
20+
*.py,cover
21+
.hypothesis/
22+
.pytest_cache/
23+
cover/
24+
25+
# Jupyter Notebook
26+
.ipynb_checkpoints
27+
28+
# IPython
29+
profile_default/
30+
ipython_config.py
31+
32+
# pyenv
33+
# For a library or package, you might want to ignore these files since the code is
34+
# intended to run in multiple environments; otherwise, check them in:
35+
# .python-version
36+
37+
# pipenv
38+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
39+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
40+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
41+
# install all needed dependencies.
42+
#Pipfile.lock
43+
44+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
45+
__pypackages__/
46+
47+
# Celery stuff
48+
celerybeat-schedule
49+
celerybeat.pid
50+
51+
# SageMath parsed files
52+
*.sage.py
53+
54+
# Environments
55+
.env
56+
.venv
57+
env/
58+
venv/
59+
ENV/
60+
env.bak/
61+
venv.bak/
62+
63+
# Spyder project settings
64+
.spyderproject
65+
.spyproject
66+
67+
# Rope project settings
68+
.ropeproject
69+
70+
# mkdocs documentation
71+
/site
72+
73+
# mypy
74+
.mypy_cache/
75+
.dmypy.json
76+
dmypy.json
77+
78+
# Pyre type checker
79+
.pyre/
80+
81+
# pytype static type analyzer
82+
.pytype/
83+
84+
# Cython debug symbols
85+
cython_debug/

0 commit comments

Comments
 (0)