Skip to content

Commit babd632

Browse files
committed
Ignore Python cruft
1 parent cc470ab commit babd632

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

.gitignore

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
5+
# C extensions
6+
*.so
7+
8+
# Distribution / packaging
9+
.Python
10+
env/
11+
build/
12+
develop-eggs/
13+
dist/
14+
eggs/
15+
lib/
16+
lib64/
17+
parts/
18+
sdist/
19+
var/
20+
*.egg-info/
21+
.installed.cfg
22+
*.egg
23+
24+
# PyInstaller
25+
# Usually these files are written by a python script from a template
26+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
27+
*.manifest
28+
*.spec
29+
30+
# Installer logs
31+
pip-log.txt
32+
pip-delete-this-directory.txt
33+
34+
# Unit test / coverage reports
35+
htmlcov/
36+
.tox/
37+
.coverage
38+
.cache
39+
nosetests.xml
40+
coverage.xml
41+
42+
# Translations
43+
*.mo
44+
*.pot
45+
46+
# Django stuff:
47+
*.log
48+
49+
# Sphinx documentation
50+
docs/_build/
51+
52+
# PyBuilder
53+
target/
54+
55+
# IPython Notebook
56+
.ipynb_checkpoints/
57+

0 commit comments

Comments
 (0)