Skip to content

Commit deb7c8c

Browse files
committed
Update .gitignore
1 parent 4e459b5 commit deb7c8c

File tree

1 file changed

+50
-13
lines changed

1 file changed

+50
-13
lines changed

.gitignore

+50-13
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,35 @@
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
1011
env/
11-
bin/
1212
build/
1313
develop-eggs/
1414
dist/
15+
downloads/
1516
eggs/
17+
.eggs/
1618
lib/
1719
lib64/
1820
parts/
1921
sdist/
2022
var/
23+
wheels/
2124
*.egg-info/
2225
.installed.cfg
2326
*.egg
24-
include/
25-
local/
26-
MANIFEST
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
2733

2834
# Installer logs
2935
pip-log.txt
@@ -33,31 +39,62 @@ pip-delete-this-directory.txt
3339
htmlcov/
3440
.tox/
3541
.coverage
42+
.coverage.*
3643
.cache
3744
nosetests.xml
3845
coverage.xml
46+
*,cover
47+
.hypothesis/
3948

4049
# Translations
4150
*.mo
42-
43-
# Mr Developer
44-
.mr.developer.cfg
45-
.project
46-
.pydevproject
47-
48-
# Rope
49-
.ropeproject
51+
*.pot
5052

5153
# Django stuff:
5254
*.log
53-
*.pot
55+
local_settings.py
56+
57+
# Flask stuff:
58+
instance/
59+
.webassets-cache
60+
61+
# Scrapy stuff:
62+
.scrapy
5463

5564
# Sphinx documentation
5665
docs/_build/
5766

67+
# PyBuilder
68+
target/
69+
70+
# Jupyter Notebook
71+
.ipynb_checkpoints
72+
73+
# pyenv
74+
.python-version
75+
76+
# celery beat schedule file
77+
celerybeat-schedule
78+
79+
# dotenv
80+
.env
81+
82+
# virtualenv
83+
.venv/
84+
venv/
85+
ENV/
86+
87+
# Spyder project settings
88+
.spyderproject
89+
90+
# Rope project settings
91+
.ropeproject
92+
5893
# JetBrains
5994
.idea
6095

6196

97+
# Project specific
98+
6299
# README.md is the true source, README is generated from it.
63100
README

0 commit comments

Comments
 (0)