Skip to content

Commit 7718c04

Browse files
committed
add .gitignore
1 parent 04bb18d commit 7718c04

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

.gitignore

+28-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ parts/
2020
sdist/
2121
var/
2222
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
2325
*.egg-info/
2426
.installed.cfg
2527
*.egg
@@ -38,12 +40,14 @@ pip-delete-this-directory.txt
3840
# Unit test / coverage reports
3941
htmlcov/
4042
.tox/
43+
.nox/
4144
.coverage
4245
.coverage.*
4346
.cache
4447
nosetests.xml
4548
coverage.xml
4649
*.cover
50+
*.py,cover
4751
.hypothesis/
4852
.pytest_cache/
4953

@@ -55,6 +59,7 @@ coverage.xml
5559
*.log
5660
local_settings.py
5761
db.sqlite3
62+
db.sqlite3-journal
5863

5964
# Flask stuff:
6065
instance/
@@ -72,11 +77,26 @@ target/
7277
# Jupyter Notebook
7378
.ipynb_checkpoints
7479

80+
# IPython
81+
profile_default/
82+
ipython_config.py
83+
7584
# pyenv
7685
.python-version
7786

78-
# celery beat schedule file
87+
# pipenv
88+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
90+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
91+
# install all needed dependencies.
92+
#Pipfile.lock
93+
94+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
95+
__pypackages__/
96+
97+
# Celery stuff
7998
celerybeat-schedule
99+
celerybeat.pid
80100

81101
# SageMath parsed files
82102
*.sage.py
@@ -102,3 +122,10 @@ venv.bak/
102122

103123
# mypy
104124
.mypy_cache/
125+
.dmypy.json
126+
dmypy.json
127+
128+
# Pyre type checker
129+
.pyre/
130+
131+
.idea

0 commit comments

Comments
 (0)