Skip to content

Commit 059b006

Browse files
authored
Add .gitignore for python environment (#145)
1 parent 0df0bb4 commit 059b006

File tree

1 file changed

+83
-0
lines changed

1 file changed

+83
-0
lines changed

.gitignore

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Cython debug symbols
7+
cython_debug/
8+
9+
# Distribution / packaging
10+
build/
11+
develop-eggs/
12+
dist/
13+
downloads/
14+
eggs/
15+
.eggs/
16+
lib/
17+
lib64/
18+
parts/
19+
sdist/
20+
var/
21+
*.egg-info/
22+
.installed.cfg
23+
*.egg
24+
25+
# PyInstaller
26+
# Usually these files are written by a python script from a template
27+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
28+
*.manifest
29+
*.spec
30+
31+
# Installer logs
32+
pip-log.txt
33+
pip-delete-this-directory.txt
34+
35+
# Unit test / coverage reports
36+
htmlcov/
37+
.tox/
38+
.nox/
39+
.coverage
40+
.coverage.*
41+
.cache
42+
nosetests.xml
43+
coverage.xml
44+
*.cover
45+
*.py,cover
46+
.hypothesis/
47+
.pytest_cache/
48+
cover/
49+
50+
# Translations
51+
*.pot
52+
53+
# Django stuff:
54+
*.log
55+
local_settings.py
56+
db.sqlite3
57+
db.sqlite3-journal
58+
59+
# Sentry
60+
.sentryclirc
61+
62+
# Staticfiles
63+
staticfiles/
64+
static/
65+
media/
66+
67+
# Jupyter Notebook
68+
.ipynb_checkpoints
69+
70+
# Environments
71+
.env
72+
.venv
73+
env/
74+
venv/
75+
ENV/
76+
env.bak/
77+
venv.bak/
78+
79+
# PyCharm
80+
.idea/
81+
82+
# VSCode
83+
.vscode/

0 commit comments

Comments
 (0)