Skip to content

Commit b9004e8

Browse files
author
Samuel FORESTIER
committed
Updates .gitignore
1 parent a472bfa commit b9004e8

File tree

1 file changed

+88
-28
lines changed

1 file changed

+88
-28
lines changed

.gitignore

Lines changed: 88 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,120 @@
11
# Byte-compiled / optimized / DLL files
22
__pycache__/
33
*.py[cod]
4+
*$py.class
45

56
# C extensions
67
*.so
78

89
# Distribution / packaging
910
.Python
10-
/env/
11-
/bin/
12-
/build/
13-
/develop-eggs/
14-
/dist/
15-
/eggs/
16-
/lib/
17-
/lib64/
18-
/parts/
19-
/sdist/
20-
/var/
21-
/*.egg-info/
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
2225
.installed.cfg
2326
*.egg
27+
MANIFEST
2428

2529
# Installer logs
2630
pip-log.txt
2731
pip-delete-this-directory.txt
2832

2933
# Unit test / coverage reports
30-
/htmlcov/
31-
/.tox/
34+
htmlcov/
35+
.tox/
36+
.nox/
3237
.coverage
38+
.coverage.*
3339
.cache
3440
nosetests.xml
3541
coverage.xml
42+
*.cover
43+
*.py,cover
44+
.hypothesis/
45+
.pytest_cache/
46+
cover/
3647

3748
# Translations
3849
*.mo
39-
40-
# Mr Developer
41-
.mr.developer.cfg
42-
.project
43-
.pydevproject
44-
45-
# Rope
46-
.ropeproject
50+
*.pot
4751

4852
# Django stuff:
4953
*.log
50-
*.pot
54+
local_settings.py
55+
db.sqlite3
56+
db.sqlite3-journal
57+
58+
# Flask stuff:
59+
instance/
60+
.webassets-cache
61+
62+
# Scrapy stuff:
63+
.scrapy
5164

5265
# Sphinx documentation
53-
/docs/_build/
66+
docs/_build/
67+
68+
# PyBuilder
69+
.pybuilder/
70+
target/
71+
72+
# Jupyter Notebook
73+
.ipynb_checkpoints
74+
75+
# IPython
76+
profile_default/
77+
ipython_config.py
78+
79+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
80+
__pypackages__/
81+
82+
# Celery stuff
83+
celerybeat-schedule
84+
celerybeat.pid
85+
86+
# SageMath parsed files
87+
*.sage.py
88+
89+
# Environments
90+
.env
91+
.venv
92+
env/
93+
venv/
94+
ENV/
95+
env.bak/
96+
venv.bak/
97+
98+
# Spyder project settings
99+
.spyderproject
100+
.spyproject
101+
102+
# Rope project settings
103+
.ropeproject
104+
105+
# mkdocs documentation
106+
/site
107+
108+
# mypy
109+
.mypy_cache/
110+
.dmypy.json
111+
dmypy.json
54112

55-
*.iml
113+
# Pyre type checker
114+
.pyre/
56115

57-
*COMMIT_MSG
116+
# pytype static type analyzer
117+
.pytype/
58118

59-
# QuickBuild
60-
.qbcache/
119+
# Cython debug symbols
120+
cython_debug/

0 commit comments

Comments
 (0)