Skip to content

Commit efdcbc9

Browse files
committed
[project] adding a Python .gitignore for scripts, Python lib, etc.
1 parent 6e92951 commit efdcbc9

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

.gitignore

+55
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,58 @@
2727
*.i*86
2828
*.x86_64
2929
*.hex
30+
31+
# Byte-compiled / optimized / DLL files
32+
__pycache__/
33+
*.py[cod]
34+
35+
# C extensions
36+
*.so
37+
38+
# Distribution / packaging
39+
.Python
40+
env/
41+
build/
42+
develop-eggs/
43+
dist/
44+
downloads/
45+
eggs/
46+
lib/
47+
lib64/
48+
parts/
49+
sdist/
50+
var/
51+
*.egg-info/
52+
.installed.cfg
53+
*.egg
54+
55+
# PyInstaller
56+
# Usually these files are written by a python script from a template
57+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
58+
*.manifest
59+
*.spec
60+
61+
# Installer logs
62+
pip-log.txt
63+
pip-delete-this-directory.txt
64+
65+
# Unit test / coverage reports
66+
htmlcov/
67+
.tox/
68+
.coverage
69+
.cache
70+
nosetests.xml
71+
coverage.xml
72+
73+
# Translations
74+
*.mo
75+
*.pot
76+
77+
# Django stuff:
78+
*.log
79+
80+
# Sphinx documentation
81+
docs/_build/
82+
83+
# PyBuilder
84+
target/

0 commit comments

Comments
 (0)