Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 182d76f

Browse files
committed
Update gitignore
1 parent fd23cd8 commit 182d76f

File tree

1 file changed

+51
-5
lines changed

1 file changed

+51
-5
lines changed

.gitignore

+51-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Parts of this file were adapted from
22
# GitHub’s collection of .gitignore file templates
3-
# which are Copyright (c) 2016 GitHub, Inc.
3+
# which are Copyright (c) 2018 GitHub, Inc.
44
# and released under the MIT License.
55
# For more details, visit the project page:
66
# https://github.com/github/gitignore
@@ -15,7 +15,6 @@ __pycache__/
1515

1616
# Distribution / packaging
1717
.Python
18-
env/
1918
build/
2019
develop-eggs/
2120
dist/
@@ -27,9 +26,12 @@ lib64/
2726
parts/
2827
sdist/
2928
var/
29+
wheels/
30+
share/python-wheels/
3031
*.egg-info/
3132
.installed.cfg
3233
*.egg
34+
MANIFEST
3335

3436
# PyInstaller
3537
# Usually these files are written by a python script from a template
@@ -44,13 +46,15 @@ pip-delete-this-directory.txt
4446
# Unit test / coverage reports
4547
htmlcov/
4648
.tox/
49+
.nox/
4750
.coverage
4851
.coverage.*
4952
.cache
5053
nosetests.xml
5154
coverage.xml
52-
*,cover
55+
*.cover
5356
.hypothesis/
57+
.pytest_cache/
5458

5559
# Translations
5660
*.mo
@@ -59,18 +63,60 @@ coverage.xml
5963
# Django stuff:
6064
*.log
6165
local_settings.py
66+
db.sqlite3
6267

63-
# Flask instance folder
68+
# Flask stuff:
6469
instance/
70+
.webassets-cache
71+
72+
# Scrapy stuff:
73+
.scrapy
6574

6675
# Sphinx documentation
6776
docs/_build/
6877

6978
# PyBuilder
7079
target/
7180

72-
# IPython Notebook
81+
# Jupyter Notebook
7382
.ipynb_checkpoints
7483

84+
# IPython
85+
profile_default/
86+
ipython_config.py
87+
7588
# pyenv
7689
.python-version
90+
91+
# celery beat schedule file
92+
celerybeat-schedule
93+
94+
# SageMath parsed files
95+
*.sage.py
96+
97+
# Environments
98+
.env
99+
.venv
100+
env/
101+
venv/
102+
ENV/
103+
env.bak/
104+
venv.bak/
105+
106+
# Spyder project settings
107+
.spyderproject
108+
.spyproject
109+
110+
# Rope project settings
111+
.ropeproject
112+
113+
# mkdocs documentation
114+
/site
115+
116+
# mypy
117+
.mypy_cache/
118+
.dmypy.json
119+
dmypy.json
120+
121+
# Pyre type checker
122+
.pyre/

0 commit comments

Comments
 (0)