@@ -8,7 +8,6 @@ __pycache__/
8
8
9
9
# Distribution / packaging
10
10
.Python
11
- env /
12
11
build /
13
12
develop-eggs /
14
13
dist /
@@ -20,9 +19,12 @@ lib64/
20
19
parts /
21
20
sdist /
22
21
var /
22
+ wheels /
23
+ share /python-wheels /
23
24
* .egg-info /
24
25
.installed.cfg
25
26
* .egg
27
+ MANIFEST
26
28
27
29
# PyInstaller
28
30
# Usually these files are written by a python script from a template
@@ -37,39 +39,161 @@ pip-delete-this-directory.txt
37
39
# Unit test / coverage reports
38
40
htmlcov /
39
41
.tox /
42
+ .nox /
40
43
.coverage
41
44
.coverage. *
42
45
.cache
43
46
nosetests.xml
44
47
coverage.xml
45
- * ,cover
48
+ * .cover
49
+ * .py,cover
46
50
.hypothesis /
47
- venv /
48
- .python-version
51
+ .pytest_cache /
52
+ cover /
49
53
50
54
# Translations
51
55
* .mo
52
56
* .pot
53
57
54
58
# Django stuff:
55
59
* .log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance /
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
56
70
57
71
# Sphinx documentation
58
72
docs /_build /
59
73
60
74
# PyBuilder
75
+ .pybuilder /
61
76
target /
62
77
63
- # Ipython Notebook
78
+ # Jupyter Notebook
64
79
.ipynb_checkpoints
65
80
81
+ # IPython
82
+ profile_default /
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ # Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ # poetry.lock
103
+
104
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
105
+ __pypackages__ /
106
+
107
+ # Celery stuff
108
+ celerybeat-schedule
109
+ celerybeat.pid
110
+
111
+ # SageMath parsed files
112
+ * .sage.py
113
+
114
+ # Environments
115
+ .env
116
+ .venv
117
+ env /
118
+ venv /
119
+ ENV /
120
+ env.bak /
121
+ venv.bak /
122
+
123
+ # Spyder project settings
124
+ .spyderproject
125
+ .spyproject
126
+
127
+ # Rope project settings
128
+ .ropeproject
129
+
130
+ # mkdocs documentation
131
+ /site
132
+
133
+ # mypy
134
+ .mypy_cache /
135
+ .dmypy.json
136
+ dmypy.json
137
+
138
+ # Pyre type checker
139
+ .pyre /
140
+
141
+ # pytype static type analyzer
142
+ .pytype /
143
+
144
+ # Cython debug symbols
145
+ cython_debug /
146
+
147
+ # PyCharm
148
+ # JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
149
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
150
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
151
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
66
152
.idea /
67
153
154
+ # ## macOS ###
155
+ # General
68
156
.DS_Store
69
- .venv
157
+ .AppleDouble
158
+ .LSOverride
159
+
160
+ # Icon must end with two \r
161
+ Icon
162
+
163
+
164
+ # Thumbnails
165
+ ._ *
166
+
167
+ # Files that might appear in the root of a volume
168
+ .DocumentRevisions-V100
169
+ .fseventsd
170
+ .Spotlight-V100
171
+ .TemporaryItems
172
+ .Trashes
173
+ .VolumeIcon.icns
174
+ .com.apple.timemachine.donotpresent
175
+
176
+ # Directories potentially created on remote AFP share
177
+ .AppleDB
178
+ .AppleDesktop
179
+ Network Trash Folder
180
+ Temporary Items
181
+ .apdisk
182
+
183
+ # ## macOS Patch ###
184
+ # iCloud generated files
185
+ * .icloud
186
+
187
+ # ## VisualStudioCode ###
188
+ .vscode /*
189
+
190
+ # Local History for Visual Studio Code
191
+ .history /
70
192
71
- # test
72
- test /.pytest_cache /
73
- test /log /
193
+ # Built Visual Studio Code Extensions
194
+ * .vsix
74
195
75
- ** /allure-report
196
+ # ## VisualStudioCode Patch ###
197
+ # Ignore all local history of files
198
+ .history
199
+ .ionide
0 commit comments