Skip to content

Commit ddefbd2

Browse files
committed
Update .gitignore
1 parent 8be130d commit ddefbd2

File tree

1 file changed

+44
-6
lines changed

1 file changed

+44
-6
lines changed

.gitignore

Lines changed: 44 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22
# Created by https://www.gitignore.io/api/python
3+
# Edit at https://www.gitignore.io/?templates=python
34

45
### Python ###
56
# Byte-compiled / optimized / DLL files
@@ -12,7 +13,6 @@ __pycache__/
1213

1314
# Distribution / packaging
1415
.Python
15-
env/
1616
build/
1717
develop-eggs/
1818
dist/
@@ -24,9 +24,13 @@ lib64/
2424
parts/
2525
sdist/
2626
var/
27+
wheels/
28+
pip-wheel-metadata/
29+
share/python-wheels/
2730
*.egg-info/
2831
.installed.cfg
2932
*.egg
33+
MANIFEST
3034

3135
# PyInstaller
3236
# Usually these files are written by a python script from a template
@@ -41,13 +45,15 @@ pip-delete-this-directory.txt
4145
# Unit test / coverage reports
4246
htmlcov/
4347
.tox/
48+
.nox/
4449
.coverage
4550
.coverage.*
4651
.cache
4752
nosetests.xml
4853
coverage.xml
49-
*,cover
54+
*.cover
5055
.hypothesis/
56+
.pytest_cache/
5157

5258
# Translations
5359
*.mo
@@ -56,6 +62,8 @@ coverage.xml
5662
# Django stuff:
5763
*.log
5864
local_settings.py
65+
db.sqlite3
66+
db.sqlite3-journal
5967

6068
# Flask stuff:
6169
instance/
@@ -73,22 +81,52 @@ target/
7381
# Jupyter Notebook
7482
.ipynb_checkpoints
7583

84+
# IPython
85+
profile_default/
86+
ipython_config.py
87+
7688
# pyenv
7789
.python-version
7890

91+
# pipenv
92+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
93+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
94+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
95+
# install all needed dependencies.
96+
#Pipfile.lock
97+
7998
# celery beat schedule file
8099
celerybeat-schedule
81100

82-
# dotenv
83-
.env
101+
# SageMath parsed files
102+
*.sage.py
84103

85-
# virtualenv
86-
.venv/
104+
# Environments
105+
.env
106+
.venv
107+
env/
87108
venv/
88109
ENV/
110+
env.bak/
111+
venv.bak/
89112

90113
# Spyder project settings
91114
.spyderproject
115+
.spyproject
92116

93117
# Rope project settings
94118
.ropeproject
119+
120+
# mkdocs documentation
121+
/site
122+
123+
# mypy
124+
.mypy_cache/
125+
.dmypy.json
126+
dmypy.json
127+
128+
# Pyre type checker
129+
.pyre/
130+
131+
# End of https://www.gitignore.io/api/python
132+

0 commit comments

Comments
 (0)