fatimaxa commited on
Commit
477c83a
·
verified ·
1 Parent(s): 538e045

Update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +245 -246
.gitignore CHANGED
@@ -1,246 +1,245 @@
1
- .gap_gpu_env/
2
- saved_models/
3
- __pychache__/
4
- *.py[cod]
5
-
6
-
7
- # Created by https://www.toptal.com/developers/gitignore/api/venv,macos,python,visualstudiocode
8
- # Edit at https://www.toptal.com/developers/gitignore?templates=venv,macos,python,visualstudiocode
9
-
10
- ### macOS ###
11
- # General
12
- .DS_Store
13
- .AppleDouble
14
- .LSOverride
15
-
16
- # Icon must end with two \r
17
- Icon
18
-
19
-
20
- # Thumbnails
21
- ._*
22
-
23
- # Files that might appear in the root of a volume
24
- .DocumentRevisions-V100
25
- .fseventsd
26
- .Spotlight-V100
27
- .TemporaryItems
28
- .Trashes
29
- .VolumeIcon.icns
30
- .com.apple.timemachine.donotpresent
31
-
32
- # Directories potentially created on remote AFP share
33
- .AppleDB
34
- .AppleDesktop
35
- Network Trash Folder
36
- Temporary Items
37
- .apdisk
38
-
39
- ### macOS Patch ###
40
- # iCloud generated files
41
- *.icloud
42
-
43
- ### Python ###
44
- # Byte-compiled / optimized / DLL files
45
- __pycache__/
46
- *.py[cod]
47
- *$py.class
48
-
49
- # C extensions
50
- *.so
51
-
52
- # Distribution / packaging
53
- .Python
54
- build/
55
- develop-eggs/
56
- dist/
57
- downloads/
58
- eggs/
59
- .eggs/
60
- lib/
61
- lib64/
62
- parts/
63
- sdist/
64
- var/
65
- wheels/
66
- share/python-wheels/
67
- *.egg-info/
68
- .installed.cfg
69
- *.egg
70
- MANIFEST
71
-
72
- # PyInstaller
73
- # Usually these files are written by a python script from a template
74
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
75
- *.manifest
76
- *.spec
77
-
78
- # Installer logs
79
- pip-log.txt
80
- pip-delete-this-directory.txt
81
-
82
- # Unit test / coverage reports
83
- htmlcov/
84
- .tox/
85
- .nox/
86
- .coverage
87
- .coverage.*
88
- .cache
89
- nosetests.xml
90
- coverage.xml
91
- *.cover
92
- *.py,cover
93
- .hypothesis/
94
- .pytest_cache/
95
- cover/
96
-
97
- # Translations
98
- *.mo
99
- *.pot
100
-
101
- # Django stuff:
102
- *.log
103
- local_settings.py
104
- db.sqlite3
105
- db.sqlite3-journal
106
-
107
- # Flask stuff:
108
- instance/
109
- .webassets-cache
110
-
111
- # Scrapy stuff:
112
- .scrapy
113
-
114
- # Sphinx documentation
115
- docs/_build/
116
-
117
- # PyBuilder
118
- .pybuilder/
119
- target/
120
-
121
- # Jupyter Notebook
122
- .ipynb_checkpoints
123
-
124
- # IPython
125
- profile_default/
126
- ipython_config.py
127
-
128
- # pyenv
129
- # For a library or package, you might want to ignore these files since the code is
130
- # intended to run in multiple environments; otherwise, check them in:
131
- # .python-version
132
-
133
- # pipenv
134
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
135
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
136
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
137
- # install all needed dependencies.
138
- #Pipfile.lock
139
-
140
- # poetry
141
- # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
142
- # This is especially recommended for binary packages to ensure reproducibility, and is more
143
- # commonly ignored for libraries.
144
- # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
145
- #poetry.lock
146
-
147
- # pdm
148
- # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
149
- #pdm.lock
150
- # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
151
- # in version control.
152
- # https://pdm.fming.dev/#use-with-ide
153
- .pdm.toml
154
-
155
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
156
- __pypackages__/
157
-
158
- # Celery stuff
159
- celerybeat-schedule
160
- celerybeat.pid
161
-
162
- # SageMath parsed files
163
- *.sage.py
164
-
165
- # Environments
166
- .env
167
- .venv
168
- env/
169
- venv/
170
- ENV/
171
- env.bak/
172
- venv.bak/
173
-
174
- # Spyder project settings
175
- .spyderproject
176
- .spyproject
177
-
178
- # Rope project settings
179
- .ropeproject
180
-
181
- # mkdocs documentation
182
- /site
183
-
184
- # mypy
185
- .mypy_cache/
186
- .dmypy.json
187
- dmypy.json
188
-
189
- # Pyre type checker
190
- .pyre/
191
-
192
- # pytype static type analyzer
193
- .pytype/
194
-
195
- # Cython debug symbols
196
- cython_debug/
197
-
198
- # PyCharm
199
- # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
200
- # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
201
- # and can be added to the global gitignore or merged into this file. For a more nuclear
202
- # option (not recommended) you can uncomment the following to ignore the entire idea folder.
203
- #.idea/
204
-
205
- ### Python Patch ###
206
- # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
207
- poetry.toml
208
-
209
- # ruff
210
- .ruff_cache/
211
-
212
- # LSP config files
213
- pyrightconfig.json
214
-
215
- ### venv ###
216
- # Virtualenv
217
- # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
218
- [Bb]in
219
- [Ii]nclude
220
- [Ll]ib
221
- [Ll]ib64
222
- [Ll]ocal
223
- [Ss]cripts
224
- pyvenv.cfg
225
- pip-selfcheck.json
226
-
227
- ### VisualStudioCode ###
228
- .vscode/*
229
- !.vscode/settings.json
230
- !.vscode/tasks.json
231
- !.vscode/launch.json
232
- !.vscode/extensions.json
233
- !.vscode/*.code-snippets
234
-
235
- # Local History for Visual Studio Code
236
- .history/
237
-
238
- # Built Visual Studio Code Extensions
239
- *.vsix
240
-
241
- ### VisualStudioCode Patch ###
242
- # Ignore all local history of files
243
- .history
244
- .ionide
245
-
246
- # End of https://www.toptal.com/developers/gitignore/api/venv,macos,python,visualstudiocode
 
1
+ .gap_gpu_env/
2
+ __pychache__/
3
+ *.py[cod]
4
+
5
+
6
+ # Created by https://www.toptal.com/developers/gitignore/api/venv,macos,python,visualstudiocode
7
+ # Edit at https://www.toptal.com/developers/gitignore?templates=venv,macos,python,visualstudiocode
8
+
9
+ ### macOS ###
10
+ # General
11
+ .DS_Store
12
+ .AppleDouble
13
+ .LSOverride
14
+
15
+ # Icon must end with two \r
16
+ Icon
17
+
18
+
19
+ # Thumbnails
20
+ ._*
21
+
22
+ # Files that might appear in the root of a volume
23
+ .DocumentRevisions-V100
24
+ .fseventsd
25
+ .Spotlight-V100
26
+ .TemporaryItems
27
+ .Trashes
28
+ .VolumeIcon.icns
29
+ .com.apple.timemachine.donotpresent
30
+
31
+ # Directories potentially created on remote AFP share
32
+ .AppleDB
33
+ .AppleDesktop
34
+ Network Trash Folder
35
+ Temporary Items
36
+ .apdisk
37
+
38
+ ### macOS Patch ###
39
+ # iCloud generated files
40
+ *.icloud
41
+
42
+ ### Python ###
43
+ # Byte-compiled / optimized / DLL files
44
+ __pycache__/
45
+ *.py[cod]
46
+ *$py.class
47
+
48
+ # C extensions
49
+ *.so
50
+
51
+ # Distribution / packaging
52
+ .Python
53
+ build/
54
+ develop-eggs/
55
+ dist/
56
+ downloads/
57
+ eggs/
58
+ .eggs/
59
+ lib/
60
+ lib64/
61
+ parts/
62
+ sdist/
63
+ var/
64
+ wheels/
65
+ share/python-wheels/
66
+ *.egg-info/
67
+ .installed.cfg
68
+ *.egg
69
+ MANIFEST
70
+
71
+ # PyInstaller
72
+ # Usually these files are written by a python script from a template
73
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
74
+ *.manifest
75
+ *.spec
76
+
77
+ # Installer logs
78
+ pip-log.txt
79
+ pip-delete-this-directory.txt
80
+
81
+ # Unit test / coverage reports
82
+ htmlcov/
83
+ .tox/
84
+ .nox/
85
+ .coverage
86
+ .coverage.*
87
+ .cache
88
+ nosetests.xml
89
+ coverage.xml
90
+ *.cover
91
+ *.py,cover
92
+ .hypothesis/
93
+ .pytest_cache/
94
+ cover/
95
+
96
+ # Translations
97
+ *.mo
98
+ *.pot
99
+
100
+ # Django stuff:
101
+ *.log
102
+ local_settings.py
103
+ db.sqlite3
104
+ db.sqlite3-journal
105
+
106
+ # Flask stuff:
107
+ instance/
108
+ .webassets-cache
109
+
110
+ # Scrapy stuff:
111
+ .scrapy
112
+
113
+ # Sphinx documentation
114
+ docs/_build/
115
+
116
+ # PyBuilder
117
+ .pybuilder/
118
+ target/
119
+
120
+ # Jupyter Notebook
121
+ .ipynb_checkpoints
122
+
123
+ # IPython
124
+ profile_default/
125
+ ipython_config.py
126
+
127
+ # pyenv
128
+ # For a library or package, you might want to ignore these files since the code is
129
+ # intended to run in multiple environments; otherwise, check them in:
130
+ # .python-version
131
+
132
+ # pipenv
133
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
134
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
135
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
136
+ # install all needed dependencies.
137
+ #Pipfile.lock
138
+
139
+ # poetry
140
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
141
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
142
+ # commonly ignored for libraries.
143
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
144
+ #poetry.lock
145
+
146
+ # pdm
147
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
148
+ #pdm.lock
149
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
150
+ # in version control.
151
+ # https://pdm.fming.dev/#use-with-ide
152
+ .pdm.toml
153
+
154
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
155
+ __pypackages__/
156
+
157
+ # Celery stuff
158
+ celerybeat-schedule
159
+ celerybeat.pid
160
+
161
+ # SageMath parsed files
162
+ *.sage.py
163
+
164
+ # Environments
165
+ .env
166
+ .venv
167
+ env/
168
+ venv/
169
+ ENV/
170
+ env.bak/
171
+ venv.bak/
172
+
173
+ # Spyder project settings
174
+ .spyderproject
175
+ .spyproject
176
+
177
+ # Rope project settings
178
+ .ropeproject
179
+
180
+ # mkdocs documentation
181
+ /site
182
+
183
+ # mypy
184
+ .mypy_cache/
185
+ .dmypy.json
186
+ dmypy.json
187
+
188
+ # Pyre type checker
189
+ .pyre/
190
+
191
+ # pytype static type analyzer
192
+ .pytype/
193
+
194
+ # Cython debug symbols
195
+ cython_debug/
196
+
197
+ # PyCharm
198
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
199
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
200
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
201
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
202
+ #.idea/
203
+
204
+ ### Python Patch ###
205
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
206
+ poetry.toml
207
+
208
+ # ruff
209
+ .ruff_cache/
210
+
211
+ # LSP config files
212
+ pyrightconfig.json
213
+
214
+ ### venv ###
215
+ # Virtualenv
216
+ # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
217
+ [Bb]in
218
+ [Ii]nclude
219
+ [Ll]ib
220
+ [Ll]ib64
221
+ [Ll]ocal
222
+ [Ss]cripts
223
+ pyvenv.cfg
224
+ pip-selfcheck.json
225
+
226
+ ### VisualStudioCode ###
227
+ .vscode/*
228
+ !.vscode/settings.json
229
+ !.vscode/tasks.json
230
+ !.vscode/launch.json
231
+ !.vscode/extensions.json
232
+ !.vscode/*.code-snippets
233
+
234
+ # Local History for Visual Studio Code
235
+ .history/
236
+
237
+ # Built Visual Studio Code Extensions
238
+ *.vsix
239
+
240
+ ### VisualStudioCode Patch ###
241
+ # Ignore all local history of files
242
+ .history
243
+ .ionide
244
+
245
+ # End of https://www.toptal.com/developers/gitignore/api/venv,macos,python,visualstudiocode