Skip to content

Commit b66bb58

Browse files
committed
Proper gitignore
1 parent d78720b commit b66bb58

File tree

1 file changed

+34
-6
lines changed

1 file changed

+34
-6
lines changed

.gitignore

Lines changed: 34 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
# Byte-compiled / optimized / DLL files
22
__pycache__/
3-
tests/__pycache__/
43
*.py[cod]
54
*$py.class
6-
*.swp
75

8-
# IDE files
9-
.idea/
6+
# C extensions
7+
*.so
108

119
# Distribution / packaging
1210
.Python
@@ -25,10 +23,40 @@ var/
2523
*.egg-info/
2624
.installed.cfg
2725
*.egg
28-
.DS_Store
29-
.coverage
26+
27+
# PyInstaller
28+
# Usually these files are written by a python script from a template
29+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
30+
*.manifest
31+
*.spec
3032

3133
# Installer logs
3234
pip-log.txt
3335
pip-delete-this-directory.txt
3436

37+
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.coverage
41+
.coverage.*
42+
.cache
43+
nosetests.xml
44+
coverage.xml
45+
*,cover
46+
.hypothesis/
47+
48+
# Translations
49+
*.mo
50+
*.pot
51+
52+
# Django stuff:
53+
*.log
54+
55+
# Sphinx documentation
56+
docs/_build/
57+
58+
# PyBuilder
59+
target/
60+
61+
#Ipython Notebook
62+
.ipynb_checkpoints

0 commit comments

Comments
 (0)