This repository was archived by the owner on Sep 1, 2022. It is now read-only.
File tree 1 file changed +51
-5
lines changed
1 file changed +51
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Parts of this file were adapted from
2
2
# GitHub’s collection of .gitignore file templates
3
- # which are Copyright (c) 2016 GitHub, Inc.
3
+ # which are Copyright (c) 2018 GitHub, Inc.
4
4
# and released under the MIT License.
5
5
# For more details, visit the project page:
6
6
# https://github.com/github/gitignore
@@ -15,7 +15,6 @@ __pycache__/
15
15
16
16
# Distribution / packaging
17
17
.Python
18
- env /
19
18
build /
20
19
develop-eggs /
21
20
dist /
@@ -27,9 +26,12 @@ lib64/
27
26
parts /
28
27
sdist /
29
28
var /
29
+ wheels /
30
+ share /python-wheels /
30
31
* .egg-info /
31
32
.installed.cfg
32
33
* .egg
34
+ MANIFEST
33
35
34
36
# PyInstaller
35
37
# Usually these files are written by a python script from a template
@@ -44,13 +46,15 @@ pip-delete-this-directory.txt
44
46
# Unit test / coverage reports
45
47
htmlcov /
46
48
.tox /
49
+ .nox /
47
50
.coverage
48
51
.coverage. *
49
52
.cache
50
53
nosetests.xml
51
54
coverage.xml
52
- * , cover
55
+ * . cover
53
56
.hypothesis /
57
+ .pytest_cache /
54
58
55
59
# Translations
56
60
* .mo
@@ -59,18 +63,60 @@ coverage.xml
59
63
# Django stuff:
60
64
* .log
61
65
local_settings.py
66
+ db.sqlite3
62
67
63
- # Flask instance folder
68
+ # Flask stuff:
64
69
instance /
70
+ .webassets-cache
71
+
72
+ # Scrapy stuff:
73
+ .scrapy
65
74
66
75
# Sphinx documentation
67
76
docs /_build /
68
77
69
78
# PyBuilder
70
79
target /
71
80
72
- # IPython Notebook
81
+ # Jupyter Notebook
73
82
.ipynb_checkpoints
74
83
84
+ # IPython
85
+ profile_default /
86
+ ipython_config.py
87
+
75
88
# pyenv
76
89
.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 /
You can’t perform that action at this time.
0 commit comments