cloudkit 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,409 @@
1
+ # Created by https://www.toptal.com/developers/gitignore/api/windows,macos,linux,python,jupyternotebooks,venv,visualstudiocode,pycharm
2
+ # Edit at https://www.toptal.com/developers/gitignore?templates=windows,macos,linux,python,jupyternotebooks,venv,visualstudiocode,pycharm
3
+
4
+ ### JupyterNotebooks ###
5
+ # gitignore template for Jupyter Notebooks
6
+ # website: http://jupyter.org/
7
+
8
+ .ipynb_checkpoints
9
+ */.ipynb_checkpoints/*
10
+
11
+ # IPython
12
+ profile_default/
13
+ ipython_config.py
14
+
15
+ # Remove previous ipynb_checkpoints
16
+ # git rm -r .ipynb_checkpoints/
17
+
18
+ ### Linux ###
19
+ *~
20
+
21
+ # temporary files which can be created if a process still has a handle open of a deleted file
22
+ .fuse_hidden*
23
+
24
+ # KDE directory preferences
25
+ .directory
26
+
27
+ # Linux trash folder which might appear on any partition or disk
28
+ .Trash-*
29
+
30
+ # .nfs files are created when an open file is removed but is still being accessed
31
+ .nfs*
32
+
33
+ ### macOS ###
34
+ # General
35
+ .DS_Store
36
+ .AppleDouble
37
+ .LSOverride
38
+
39
+ # Icon must end with two \r
40
+ Icon
41
+
42
+ # Thumbnails
43
+ ._*
44
+
45
+ # Files that might appear in the root of a volume
46
+ .DocumentRevisions-V100
47
+ .fseventsd
48
+ .Spotlight-V100
49
+ .TemporaryItems
50
+ .Trashes
51
+ .VolumeIcon.icns
52
+ .com.apple.timemachine.donotpresent
53
+
54
+ # Directories potentially created on remote AFP share
55
+ .AppleDB
56
+ .AppleDesktop
57
+ Network Trash Folder
58
+ Temporary Items
59
+ .apdisk
60
+
61
+ ### macOS Patch ###
62
+ # iCloud generated files
63
+ *.icloud
64
+
65
+ ### PyCharm ###
66
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
67
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
68
+
69
+ # User-specific stuff
70
+ .idea/**/workspace.xml
71
+ .idea/**/tasks.xml
72
+ .idea/**/usage.statistics.xml
73
+ .idea/**/dictionaries
74
+ .idea/**/shelf
75
+
76
+ # AWS User-specific
77
+ .idea/**/aws.xml
78
+
79
+ # Generated files
80
+ .idea/**/contentModel.xml
81
+
82
+ # Sensitive or high-churn files
83
+ .idea/**/dataSources/
84
+ .idea/**/dataSources.ids
85
+ .idea/**/dataSources.local.xml
86
+ .idea/**/sqlDataSources.xml
87
+ .idea/**/dynamic.xml
88
+ .idea/**/uiDesigner.xml
89
+ .idea/**/dbnavigator.xml
90
+
91
+ # Gradle
92
+ .idea/**/gradle.xml
93
+ .idea/**/libraries
94
+
95
+ # Gradle and Maven with auto-import
96
+ # When using Gradle or Maven with auto-import, you should exclude module files,
97
+ # since they will be recreated, and may cause churn. Uncomment if using
98
+ # auto-import.
99
+ # .idea/artifacts
100
+ # .idea/compiler.xml
101
+ # .idea/jarRepositories.xml
102
+ # .idea/modules.xml
103
+ # .idea/*.iml
104
+ # .idea/modules
105
+ # *.iml
106
+ # *.ipr
107
+
108
+ # CMake
109
+ cmake-build-*/
110
+
111
+ # Mongo Explorer plugin
112
+ .idea/**/mongoSettings.xml
113
+
114
+ # File-based project format
115
+ *.iws
116
+
117
+ # IntelliJ
118
+ out/
119
+
120
+ # mpeltonen/sbt-idea plugin
121
+ .idea_modules/
122
+
123
+ # JIRA plugin
124
+ atlassian-ide-plugin.xml
125
+
126
+ # Cursive Clojure plugin
127
+ .idea/replstate.xml
128
+
129
+ # SonarLint plugin
130
+ .idea/sonarlint/
131
+
132
+ # Crashlytics plugin (for Android Studio and IntelliJ)
133
+ com_crashlytics_export_strings.xml
134
+ crashlytics.properties
135
+ crashlytics-build.properties
136
+ fabric.properties
137
+
138
+ # Editor-based Rest Client
139
+ .idea/httpRequests
140
+
141
+ # Android studio 3.1+ serialized cache file
142
+ .idea/caches/build_file_checksums.ser
143
+
144
+ ### PyCharm Patch ###
145
+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
146
+
147
+ # *.iml
148
+ # modules.xml
149
+ # .idea/misc.xml
150
+ # *.ipr
151
+
152
+ # Sonarlint plugin
153
+ # https://plugins.jetbrains.com/plugin/7973-sonarlint
154
+ .idea/**/sonarlint/
155
+
156
+ # SonarQube Plugin
157
+ # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
158
+ .idea/**/sonarIssues.xml
159
+
160
+ # Markdown Navigator plugin
161
+ # https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
162
+ .idea/**/markdown-navigator.xml
163
+ .idea/**/markdown-navigator-enh.xml
164
+ .idea/**/markdown-navigator/
165
+
166
+ # Cache file creation bug
167
+ # See https://youtrack.jetbrains.com/issue/JBR-2257
168
+ .idea/$CACHE_FILE$
169
+
170
+ # CodeStream plugin
171
+ # https://plugins.jetbrains.com/plugin/12206-codestream
172
+ .idea/codestream.xml
173
+
174
+ # Azure Toolkit for IntelliJ plugin
175
+ # https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
176
+ .idea/**/azureSettings.xml
177
+
178
+ ### Python ###
179
+ # Byte-compiled / optimized / DLL files
180
+ __pycache__/
181
+ *.py[cod]
182
+ *$py.class
183
+
184
+ # C extensions
185
+ *.so
186
+
187
+ # Distribution / packaging
188
+ .Python
189
+ build/
190
+ develop-eggs/
191
+ dist/
192
+ downloads/
193
+ eggs/
194
+ .eggs/
195
+ lib/
196
+ lib64/
197
+ parts/
198
+ sdist/
199
+ var/
200
+ wheels/
201
+ share/python-wheels/
202
+ *.egg-info/
203
+ .installed.cfg
204
+ *.egg
205
+ MANIFEST
206
+
207
+ # PyInstaller
208
+ # Usually these files are written by a python script from a template
209
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
210
+ *.manifest
211
+ *.spec
212
+
213
+ # Installer logs
214
+ pip-log.txt
215
+ pip-delete-this-directory.txt
216
+
217
+ # Unit test / coverage reports
218
+ htmlcov/
219
+ .tox/
220
+ .nox/
221
+ .coverage
222
+ .coverage.*
223
+ .cache
224
+ nosetests.xml
225
+ coverage.xml
226
+ *.cover
227
+ *.py,cover
228
+ .hypothesis/
229
+ .pytest_cache/
230
+ cover/
231
+
232
+ # Translations
233
+ *.mo
234
+ *.pot
235
+
236
+ # Django stuff:
237
+ *.log
238
+ local_settings.py
239
+ db.sqlite3
240
+ db.sqlite3-journal
241
+
242
+ # Flask stuff:
243
+ instance/
244
+ .webassets-cache
245
+
246
+ # Scrapy stuff:
247
+ .scrapy
248
+
249
+ # Sphinx documentation
250
+ docs/_build/
251
+
252
+ # PyBuilder
253
+ .pybuilder/
254
+ target/
255
+
256
+ # Jupyter Notebook
257
+
258
+ # IPython
259
+
260
+ # pyenv
261
+ # For a library or package, you might want to ignore these files since the code is
262
+ # intended to run in multiple environments; otherwise, check them in:
263
+ # .python-version
264
+
265
+ # pipenv
266
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
267
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
268
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
269
+ # install all needed dependencies.
270
+ #Pipfile.lock
271
+
272
+ # poetry
273
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
274
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
275
+ # commonly ignored for libraries.
276
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
277
+ #poetry.lock
278
+
279
+ # pdm
280
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
281
+ #pdm.lock
282
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
283
+ # in version control.
284
+ # https://pdm.fming.dev/#use-with-ide
285
+ .pdm.toml
286
+
287
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
288
+ __pypackages__/
289
+
290
+ # Celery stuff
291
+ celerybeat-schedule
292
+ celerybeat.pid
293
+
294
+ # SageMath parsed files
295
+ *.sage.py
296
+
297
+ # Environments
298
+ .env
299
+ .venv
300
+ env/
301
+ venv/
302
+ ENV/
303
+ env.bak/
304
+ venv.bak/
305
+
306
+ # Spyder project settings
307
+ .spyderproject
308
+ .spyproject
309
+
310
+ # Rope project settings
311
+ .ropeproject
312
+
313
+ # mkdocs documentation
314
+ /site
315
+
316
+ # mypy
317
+ .mypy_cache/
318
+ .dmypy.json
319
+ dmypy.json
320
+
321
+ # Pyre type checker
322
+ .pyre/
323
+
324
+ # pytype static type analyzer
325
+ .pytype/
326
+
327
+ # Cython debug symbols
328
+ cython_debug/
329
+
330
+ # PyCharm
331
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
332
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
333
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
334
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
335
+ #.idea/
336
+
337
+ ### Python Patch ###
338
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
339
+ poetry.toml
340
+
341
+ # ruff
342
+ .ruff_cache/
343
+
344
+ # LSP config files
345
+ pyrightconfig.json
346
+
347
+ ### venv ###
348
+ # Virtualenv
349
+ # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
350
+ [Bb]in
351
+ [Ii]nclude
352
+ [Ll]ib
353
+ [Ll]ib64
354
+ [Ll]ocal
355
+ #[Ss]cripts
356
+ pyvenv.cfg
357
+ pip-selfcheck.json
358
+
359
+ ### VisualStudioCode ###
360
+ .vscode/*
361
+ !.vscode/settings.json
362
+ !.vscode/tasks.json
363
+ !.vscode/launch.json
364
+ !.vscode/extensions.json
365
+ !.vscode/*.code-snippets
366
+ !.vscode/*.code-profile
367
+
368
+ # Local History for Visual Studio Code
369
+ .history/
370
+
371
+ # Built Visual Studio Code Extensions
372
+ *.vsix
373
+
374
+ ### VisualStudioCode Patch ###
375
+ # Ignore all local history of files
376
+ .history
377
+ .ionide
378
+
379
+ ### Windows ###
380
+ # Windows thumbnail cache files
381
+ Thumbs.db
382
+ Thumbs.db:encryptable
383
+ ehthumbs.db
384
+ ehthumbs_vista.db
385
+
386
+ # Dump file
387
+ *.stackdump
388
+
389
+ # Folder config file
390
+ [Dd]esktop.ini
391
+
392
+ # Recycle Bin used on file shares
393
+ $RECYCLE.BIN/
394
+
395
+ # Windows Installer files
396
+ *.cab
397
+ *.msi
398
+ *.msix
399
+ *.msm
400
+ *.msp
401
+
402
+ # Windows shortcuts
403
+ *.lnk
404
+
405
+ # End of https://www.toptal.com/developers/gitignore/api/windows,macos,linux,python,jupyternotebooks,venv,visualstudiocode,pycharm
406
+
407
+ # Reflex
408
+ .web
409
+ reflex.db
cloudkit-0.1.0/LICENSE ADDED
File without changes