File tree Expand file tree Collapse file tree 1 file changed +44
-6
lines changed Expand file tree Collapse file tree 1 file changed +44
-6
lines changed Original file line number Diff line number Diff line change 1
1
2
2
# Created by https://www.gitignore.io/api/python
3
+ # Edit at https://www.gitignore.io/?templates=python
3
4
4
5
# ## Python ###
5
6
# Byte-compiled / optimized / DLL files
@@ -12,7 +13,6 @@ __pycache__/
12
13
13
14
# Distribution / packaging
14
15
.Python
15
- env /
16
16
build /
17
17
develop-eggs /
18
18
dist /
@@ -24,9 +24,13 @@ lib64/
24
24
parts /
25
25
sdist /
26
26
var /
27
+ wheels /
28
+ pip-wheel-metadata /
29
+ share /python-wheels /
27
30
* .egg-info /
28
31
.installed.cfg
29
32
* .egg
33
+ MANIFEST
30
34
31
35
# PyInstaller
32
36
# Usually these files are written by a python script from a template
@@ -41,13 +45,15 @@ pip-delete-this-directory.txt
41
45
# Unit test / coverage reports
42
46
htmlcov /
43
47
.tox /
48
+ .nox /
44
49
.coverage
45
50
.coverage. *
46
51
.cache
47
52
nosetests.xml
48
53
coverage.xml
49
- * , cover
54
+ * . cover
50
55
.hypothesis /
56
+ .pytest_cache /
51
57
52
58
# Translations
53
59
* .mo
@@ -56,6 +62,8 @@ coverage.xml
56
62
# Django stuff:
57
63
* .log
58
64
local_settings.py
65
+ db.sqlite3
66
+ db.sqlite3-journal
59
67
60
68
# Flask stuff:
61
69
instance /
@@ -73,22 +81,52 @@ target/
73
81
# Jupyter Notebook
74
82
.ipynb_checkpoints
75
83
84
+ # IPython
85
+ profile_default /
86
+ ipython_config.py
87
+
76
88
# pyenv
77
89
.python-version
78
90
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
+
79
98
# celery beat schedule file
80
99
celerybeat-schedule
81
100
82
- # dotenv
83
- .env
101
+ # SageMath parsed files
102
+ * .sage.py
84
103
85
- # virtualenv
86
- .venv /
104
+ # Environments
105
+ .env
106
+ .venv
107
+ env /
87
108
venv /
88
109
ENV /
110
+ env.bak /
111
+ venv.bak /
89
112
90
113
# Spyder project settings
91
114
.spyderproject
115
+ .spyproject
92
116
93
117
# Rope project settings
94
118
.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
+
You can’t perform that action at this time.
0 commit comments