gitstore 0.58.3__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.
Files changed (218) hide show
  1. gitstore-0.58.3/.claude/settings.local.json +58 -0
  2. gitstore-0.58.3/.gitignore +7 -0
  3. gitstore-0.58.3/.readthedocs.yaml +12 -0
  4. gitstore-0.58.3/CHANGELOG.md +898 -0
  5. gitstore-0.58.3/LICENSE +191 -0
  6. gitstore-0.58.3/Makefile +18 -0
  7. gitstore-0.58.3/PKG-INFO +27 -0
  8. gitstore-0.58.3/README.md +349 -0
  9. gitstore-0.58.3/docs/api.md +256 -0
  10. gitstore-0.58.3/docs/cli.md +803 -0
  11. gitstore-0.58.3/docs/drop-compat-layer.md +295 -0
  12. gitstore-0.58.3/docs/index.md +32 -0
  13. gitstore-0.58.3/docs/paths.md +566 -0
  14. gitstore-0.58.3/docs/sqlite-backend-migration.md +187 -0
  15. gitstore-0.58.3/docs/testing.md +133 -0
  16. gitstore-0.58.3/interop/fixtures.json +69 -0
  17. gitstore-0.58.3/interop/py_read_test.py +198 -0
  18. gitstore-0.58.3/interop/py_write.py +65 -0
  19. gitstore-0.58.3/interop/run.sh +63 -0
  20. gitstore-0.58.3/interop/ts_read.test.ts +258 -0
  21. gitstore-0.58.3/interop/ts_write.ts +94 -0
  22. gitstore-0.58.3/mkdocs.yml +42 -0
  23. gitstore-0.58.3/pyproject.toml +50 -0
  24. gitstore-0.58.3/requirements-docs.txt +2 -0
  25. gitstore-0.58.3/rs/.gitignore +1 -0
  26. gitstore-0.58.3/rs/Cargo.lock +2153 -0
  27. gitstore-0.58.3/rs/Cargo.toml +33 -0
  28. gitstore-0.58.3/rs/LICENSE +191 -0
  29. gitstore-0.58.3/rs/README.md +27 -0
  30. gitstore-0.58.3/rs/examples/rs_read.rs +383 -0
  31. gitstore-0.58.3/rs/examples/rs_write.rs +126 -0
  32. gitstore-0.58.3/rs/src/batch.rs +134 -0
  33. gitstore-0.58.3/rs/src/copy.rs +648 -0
  34. gitstore-0.58.3/rs/src/error.rs +121 -0
  35. gitstore-0.58.3/rs/src/fs.rs +1892 -0
  36. gitstore-0.58.3/rs/src/glob.rs +75 -0
  37. gitstore-0.58.3/rs/src/lib.rs +57 -0
  38. gitstore-0.58.3/rs/src/lock.rs +32 -0
  39. gitstore-0.58.3/rs/src/mirror.rs +31 -0
  40. gitstore-0.58.3/rs/src/notes.rs +603 -0
  41. gitstore-0.58.3/rs/src/paths.rs +191 -0
  42. gitstore-0.58.3/rs/src/refdict.rs +376 -0
  43. gitstore-0.58.3/rs/src/reflog.rs +100 -0
  44. gitstore-0.58.3/rs/src/store.rs +202 -0
  45. gitstore-0.58.3/rs/src/tree.rs +450 -0
  46. gitstore-0.58.3/rs/src/types.rs +478 -0
  47. gitstore-0.58.3/rs/tests/common/mod.rs +25 -0
  48. gitstore-0.58.3/rs/tests/integration.rs +229 -0
  49. gitstore-0.58.3/rs/tests/test_apply.rs +546 -0
  50. gitstore-0.58.3/rs/tests/test_batch.rs +557 -0
  51. gitstore-0.58.3/rs/tests/test_copy.rs +1015 -0
  52. gitstore-0.58.3/rs/tests/test_copy_ref.rs +482 -0
  53. gitstore-0.58.3/rs/tests/test_fs_read.rs +494 -0
  54. gitstore-0.58.3/rs/tests/test_fs_write.rs +834 -0
  55. gitstore-0.58.3/rs/tests/test_glob.rs +315 -0
  56. gitstore-0.58.3/rs/tests/test_history.rs +1124 -0
  57. gitstore-0.58.3/rs/tests/test_move.rs +356 -0
  58. gitstore-0.58.3/rs/tests/test_notes.rs +754 -0
  59. gitstore-0.58.3/rs/tests/test_stat.rs +310 -0
  60. gitstore-0.58.3/rs/tests/test_store.rs +656 -0
  61. gitstore-0.58.3/rs/tests/test_types.rs +256 -0
  62. gitstore-0.58.3/scripts/test-parity.sh +100 -0
  63. gitstore-0.58.3/src/gitstore/__init__.py +20 -0
  64. gitstore-0.58.3/src/gitstore/_exclude.py +121 -0
  65. gitstore-0.58.3/src/gitstore/_fileobj.py +143 -0
  66. gitstore-0.58.3/src/gitstore/_fuse.py +202 -0
  67. gitstore-0.58.3/src/gitstore/_glob.py +16 -0
  68. gitstore-0.58.3/src/gitstore/_lock.py +76 -0
  69. gitstore-0.58.3/src/gitstore/_objsize.py +107 -0
  70. gitstore-0.58.3/src/gitstore/batch.py +184 -0
  71. gitstore-0.58.3/src/gitstore/cli/__init__.py +6 -0
  72. gitstore-0.58.3/src/gitstore/cli/_archive.py +382 -0
  73. gitstore-0.58.3/src/gitstore/cli/_basic.py +1059 -0
  74. gitstore-0.58.3/src/gitstore/cli/_cp.py +522 -0
  75. gitstore-0.58.3/src/gitstore/cli/_helpers.py +610 -0
  76. gitstore-0.58.3/src/gitstore/cli/_mirror.py +98 -0
  77. gitstore-0.58.3/src/gitstore/cli/_mount.py +79 -0
  78. gitstore-0.58.3/src/gitstore/cli/_notes.py +133 -0
  79. gitstore-0.58.3/src/gitstore/cli/_refs.py +235 -0
  80. gitstore-0.58.3/src/gitstore/cli/_serve.py +75 -0
  81. gitstore-0.58.3/src/gitstore/cli/_sync.py +318 -0
  82. gitstore-0.58.3/src/gitstore/cli/_watch.py +80 -0
  83. gitstore-0.58.3/src/gitstore/cli/_web.py +414 -0
  84. gitstore-0.58.3/src/gitstore/copy/__init__.py +56 -0
  85. gitstore-0.58.3/src/gitstore/copy/_io.py +187 -0
  86. gitstore-0.58.3/src/gitstore/copy/_ops.py +1079 -0
  87. gitstore-0.58.3/src/gitstore/copy/_resolve.py +469 -0
  88. gitstore-0.58.3/src/gitstore/copy/_types.py +207 -0
  89. gitstore-0.58.3/src/gitstore/exceptions.py +9 -0
  90. gitstore-0.58.3/src/gitstore/fs.py +1401 -0
  91. gitstore-0.58.3/src/gitstore/mirror.py +303 -0
  92. gitstore-0.58.3/src/gitstore/notes.py +451 -0
  93. gitstore-0.58.3/src/gitstore/py.typed +0 -0
  94. gitstore-0.58.3/src/gitstore/repo.py +598 -0
  95. gitstore-0.58.3/src/gitstore/tree.py +353 -0
  96. gitstore-0.58.3/tests/__init__.py +0 -0
  97. gitstore-0.58.3/tests/conftest.py +100 -0
  98. gitstore-0.58.3/tests/test_apply.py +306 -0
  99. gitstore-0.58.3/tests/test_auto_create.py +295 -0
  100. gitstore-0.58.3/tests/test_backup_restore.py +277 -0
  101. gitstore-0.58.3/tests/test_batch.py +258 -0
  102. gitstore-0.58.3/tests/test_cli.py +1014 -0
  103. gitstore-0.58.3/tests/test_cli_archive.py +996 -0
  104. gitstore-0.58.3/tests/test_cli_cp.py +1231 -0
  105. gitstore-0.58.3/tests/test_cli_ls.py +365 -0
  106. gitstore-0.58.3/tests/test_cli_refs.py +631 -0
  107. gitstore-0.58.3/tests/test_cli_web.py +827 -0
  108. gitstore-0.58.3/tests/test_cmp_cli.py +231 -0
  109. gitstore-0.58.3/tests/test_copy.py +1504 -0
  110. gitstore-0.58.3/tests/test_copy_ref.py +299 -0
  111. gitstore-0.58.3/tests/test_exclude.py +258 -0
  112. gitstore-0.58.3/tests/test_fileobj.py +130 -0
  113. gitstore-0.58.3/tests/test_fs_read.py +305 -0
  114. gitstore-0.58.3/tests/test_fs_write.py +710 -0
  115. gitstore-0.58.3/tests/test_fuse.py +318 -0
  116. gitstore-0.58.3/tests/test_glob.py +229 -0
  117. gitstore-0.58.3/tests/test_head.py +171 -0
  118. gitstore-0.58.3/tests/test_history.py +206 -0
  119. gitstore-0.58.3/tests/test_integration.py +36 -0
  120. gitstore-0.58.3/tests/test_message.py +95 -0
  121. gitstore-0.58.3/tests/test_move.py +120 -0
  122. gitstore-0.58.3/tests/test_notes.py +485 -0
  123. gitstore-0.58.3/tests/test_objsize.py +117 -0
  124. gitstore-0.58.3/tests/test_ref_path.py +834 -0
  125. gitstore-0.58.3/tests/test_repo.py +300 -0
  126. gitstore-0.58.3/tests/test_serve.py +154 -0
  127. gitstore-0.58.3/tests/test_stat.py +290 -0
  128. gitstore-0.58.3/tests/test_sync.py +1490 -0
  129. gitstore-0.58.3/tests/test_sync_api.py +169 -0
  130. gitstore-0.58.3/tests/test_tree.py +191 -0
  131. gitstore-0.58.3/tests/test_watch.py +215 -0
  132. gitstore-0.58.3/ts/.gitignore +2 -0
  133. gitstore-0.58.3/ts/README.md +24 -0
  134. gitstore-0.58.3/ts/deno.json +9 -0
  135. gitstore-0.58.3/ts/deno.lock +953 -0
  136. gitstore-0.58.3/ts/dist/batch.d.ts +72 -0
  137. gitstore-0.58.3/ts/dist/batch.js +139 -0
  138. gitstore-0.58.3/ts/dist/batch.js.map +1 -0
  139. gitstore-0.58.3/ts/dist/copy.d.ts +214 -0
  140. gitstore-0.58.3/ts/dist/copy.js +1210 -0
  141. gitstore-0.58.3/ts/dist/copy.js.map +1 -0
  142. gitstore-0.58.3/ts/dist/fs.d.ts +557 -0
  143. gitstore-0.58.3/ts/dist/fs.js +1229 -0
  144. gitstore-0.58.3/ts/dist/fs.js.map +1 -0
  145. gitstore-0.58.3/ts/dist/gitstore.d.ts +74 -0
  146. gitstore-0.58.3/ts/dist/gitstore.js +131 -0
  147. gitstore-0.58.3/ts/dist/gitstore.js.map +1 -0
  148. gitstore-0.58.3/ts/dist/glob.d.ts +14 -0
  149. gitstore-0.58.3/ts/dist/glob.js +68 -0
  150. gitstore-0.58.3/ts/dist/glob.js.map +1 -0
  151. gitstore-0.58.3/ts/dist/index.d.ts +34 -0
  152. gitstore-0.58.3/ts/dist/index.js +47 -0
  153. gitstore-0.58.3/ts/dist/index.js.map +1 -0
  154. gitstore-0.58.3/ts/dist/lock.d.ts +15 -0
  155. gitstore-0.58.3/ts/dist/lock.js +71 -0
  156. gitstore-0.58.3/ts/dist/lock.js.map +1 -0
  157. gitstore-0.58.3/ts/dist/mirror.d.ts +24 -0
  158. gitstore-0.58.3/ts/dist/mirror.js +185 -0
  159. gitstore-0.58.3/ts/dist/mirror.js.map +1 -0
  160. gitstore-0.58.3/ts/dist/notes.d.ts +146 -0
  161. gitstore-0.58.3/ts/dist/notes.js +506 -0
  162. gitstore-0.58.3/ts/dist/notes.js.map +1 -0
  163. gitstore-0.58.3/ts/dist/paths.d.ts +16 -0
  164. gitstore-0.58.3/ts/dist/paths.js +43 -0
  165. gitstore-0.58.3/ts/dist/paths.js.map +1 -0
  166. gitstore-0.58.3/ts/dist/refdict.d.ts +117 -0
  167. gitstore-0.58.3/ts/dist/refdict.js +266 -0
  168. gitstore-0.58.3/ts/dist/refdict.js.map +1 -0
  169. gitstore-0.58.3/ts/dist/reflog.d.ts +18 -0
  170. gitstore-0.58.3/ts/dist/reflog.js +68 -0
  171. gitstore-0.58.3/ts/dist/reflog.js.map +1 -0
  172. gitstore-0.58.3/ts/dist/tree.d.ts +63 -0
  173. gitstore-0.58.3/ts/dist/tree.js +267 -0
  174. gitstore-0.58.3/ts/dist/tree.js.map +1 -0
  175. gitstore-0.58.3/ts/dist/types.d.ts +334 -0
  176. gitstore-0.58.3/ts/dist/types.js +267 -0
  177. gitstore-0.58.3/ts/dist/types.js.map +1 -0
  178. gitstore-0.58.3/ts/package-lock.json +2347 -0
  179. gitstore-0.58.3/ts/package.json +58 -0
  180. gitstore-0.58.3/ts/src/batch.ts +177 -0
  181. gitstore-0.58.3/ts/src/copy.ts +1387 -0
  182. gitstore-0.58.3/ts/src/fs.ts +1486 -0
  183. gitstore-0.58.3/ts/src/gitstore.ts +162 -0
  184. gitstore-0.58.3/ts/src/glob.ts +65 -0
  185. gitstore-0.58.3/ts/src/index.ts +85 -0
  186. gitstore-0.58.3/ts/src/lock.ts +81 -0
  187. gitstore-0.58.3/ts/src/mirror.ts +216 -0
  188. gitstore-0.58.3/ts/src/notes.ts +571 -0
  189. gitstore-0.58.3/ts/src/paths.ts +42 -0
  190. gitstore-0.58.3/ts/src/refdict.ts +291 -0
  191. gitstore-0.58.3/ts/src/reflog.ts +93 -0
  192. gitstore-0.58.3/ts/src/tree.ts +373 -0
  193. gitstore-0.58.3/ts/src/types.ts +516 -0
  194. gitstore-0.58.3/ts/tests/apply.test.ts +229 -0
  195. gitstore-0.58.3/ts/tests/batch.test.ts +231 -0
  196. gitstore-0.58.3/ts/tests/copy-ref.test.ts +308 -0
  197. gitstore-0.58.3/ts/tests/copy.test.ts +794 -0
  198. gitstore-0.58.3/ts/tests/deno_compat_test.ts +589 -0
  199. gitstore-0.58.3/ts/tests/fs-read.test.ts +355 -0
  200. gitstore-0.58.3/ts/tests/fs-write.test.ts +527 -0
  201. gitstore-0.58.3/ts/tests/glob.test.ts +214 -0
  202. gitstore-0.58.3/ts/tests/head.test.ts +44 -0
  203. gitstore-0.58.3/ts/tests/helpers.ts +64 -0
  204. gitstore-0.58.3/ts/tests/history.test.ts +148 -0
  205. gitstore-0.58.3/ts/tests/integration.test.ts +19 -0
  206. gitstore-0.58.3/ts/tests/message.test.ts +132 -0
  207. gitstore-0.58.3/ts/tests/move.test.ts +161 -0
  208. gitstore-0.58.3/ts/tests/notes.test.ts +543 -0
  209. gitstore-0.58.3/ts/tests/repo.test.ts +301 -0
  210. gitstore-0.58.3/ts/tests/stat.test.ts +253 -0
  211. gitstore-0.58.3/ts/tests/sync-api.test.ts +32 -0
  212. gitstore-0.58.3/ts/tests/sync.test.ts +1253 -0
  213. gitstore-0.58.3/ts/tests/tree.test.ts +230 -0
  214. gitstore-0.58.3/ts/tests/typecheck.test.ts +21 -0
  215. gitstore-0.58.3/ts/tests/validation.test.ts +69 -0
  216. gitstore-0.58.3/ts/tsconfig.json +18 -0
  217. gitstore-0.58.3/ts/vitest.config.ts +9 -0
  218. gitstore-0.58.3/uv.lock +371 -0
@@ -0,0 +1,58 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(uv:*)",
5
+ "WebSearch",
6
+ "WebFetch(domain:gist.github.com)",
7
+ "WebFetch(domain:www.pygit2.org)",
8
+ "Bash(.venv/bin/pytest -v)",
9
+ "Bash(grep:*)",
10
+ "Bash(git -C /Users/halazar/Dropbox/development/gitstore log --oneline -5)",
11
+ "WebFetch(domain:github.com)",
12
+ "WebFetch(domain:dulwich.readthedocs.io)",
13
+ "WebFetch(domain:raw.githubusercontent.com)",
14
+ "WebFetch(domain:api.github.com)",
15
+ "WebFetch(domain:pypi.org)",
16
+ "WebFetch(domain:libgit2.org)",
17
+ "Bash(jedidb:*)",
18
+ "mcp__web-reader__webReader",
19
+ "Bash(wc:*)",
20
+ "Bash(python3:*)",
21
+ "WebFetch(domain:watchfiles.helpmanual.io)",
22
+ "Bash(git -C /Users/halazar/Dropbox/development/gitstore status)",
23
+ "Bash(git -C /Users/halazar/Dropbox/development/gitstore diff --stat)",
24
+ "Bash(git -C /Users/halazar/Dropbox/development/gitstore diff tests/conftest.py tests/test_cli.py)",
25
+ "Bash(git -C /Users/halazar/Dropbox/development/gitstore add tests/conftest.py tests/test_cli.py tests/test_cli_archive.py tests/test_cli_cp.py tests/test_cli_ls.py tests/test_cli_refs.py)",
26
+ "Bash(find:*)",
27
+ "Bash(git ls-tree:*)",
28
+ "Bash(for:*)",
29
+ "Bash(do echo \"=== $f ===\")",
30
+ "Bash(done)",
31
+ "Bash(npx vitest:*)",
32
+ "WebFetch(domain:docs.rs)",
33
+ "Bash(cargo check:*)",
34
+ "Bash(cargo test:*)",
35
+ "Bash(cargo run:*)",
36
+ "Bash(bash interop/run.sh:*)",
37
+ "Bash(/tmp/python_tests.txt << 'EOF'\ntest_apply.py:\n- TestWriteEntry\n- TestApplyWrites\n- TestApplyBareShorthand\n- TestApplyRemoves\n- TestApplyCombined\n- TestApplyCommitOptions\n- TestApplyErrors\n- TestApplyChangesReport\n\ntest_auto_create.py:\n- test_cp_auto_creates_repo\n- test_cp_auto_create_uses_branch\n- test_cp_no_create_prevents_auto_create\n- test_cp_repo_to_disk_no_auto_create\n- test_cp_dir_auto_creates_repo\n- test_cp_dir_no_create_prevents_auto_create\n- test_unzip_auto_creates_repo\n- test_unzip_no_create_prevents_auto_create\n- test_untar_auto_creates_repo\n- test_untar_no_create_prevents_auto_create\n- test_unarchive_auto_creates_repo\n- test_unarchive_no_create_prevents_auto_create\n- test_ls_errors_on_missing_repo\n- test_cat_errors_on_missing_repo\n- test_cp_existing_repo_not_recreated\n- test_cp_multi_source_disk_to_repo\n- test_cp_multi_source_repo_to_disk\n- test_cp_dir_contents_to_repo\n- test_cp_dir_contents_from_repo\n\ntest_batch.py:\n- TestBatch\n\ntest_copy.py:\n- TestCopyToRepoFile\n- TestCopyToRepoDir\n- TestCopyToRepoGlob\n- TestCopyFromRepoFile\n- TestCopyFromRepoDir\n- TestCopyFromRepoGlob\n- TestDryRun\n- TestMixed\n- TestIgnoreExisting\n- TestCopyEdgeCases\n- TestCopySymlinks\n- TestFollowSymlinksDeleteMode\n- TestDelete\n- TestIgnoreErrors\n- TestIgnoreErrorsDeleteAllFail\n- TestHashUnreadableIgnoreErrors\n- TestSourceDirSymlinkNoFollow\n- TestExpandDiskGlobCrossPlatform\n- TestOverlappingSources\n- TestCopyFromRepoDuplicateSources\n- TestContentsModeSymlinkedDir\n- TestChangeReportNone\n- TestCopyToRepoPivot\n- TestCopyFromRepoPivot\n- TestRemoveFromRepo\n- TestSymlinkParentEscape\n- TestDanglingSymlinkIgnoreExisting\n\ntest_exclude.py:\n- TestExcludeFilter\n- TestWalkWithExclude\n\ntest_fileobj.py:\n- TestReadableFile\n- TestWritableFile\n\ntest_fs_read.py:\n- TestRead\n- TestReadText\n- TestLs\n- TestWalk\n- TestExists\n- TestExport\n- TestFileType\n- TestSize\n- TestObjectHash\n- TestPathLikeSupport\n- TestProperties\n\ntest_fs_write.py:\n- TestWriteText\n- TestWrite\n- TestRemove\n- TestLog\n- TestStaleSnapshot\n- TestWriteFrom\n- TestSymlink\n- TestNoOpCommit\n- TestUndo\n- TestRedo\n- TestReflog\n- TestUndoRedoEdgeCases\n- TestBranchesSet\n- TestRetryWrite\n\ntest_glob.py:\n- TestIsDir\n- TestGlobStar\n- TestGlobQuestion\n- TestGlobNested\n- TestGlobEdgeCases\n- TestGlobDoublestar\n- TestGlobPivot\n- TestDiskGlobPivot\n\ntest_history.py:\n- TestParent\n- TestBack\n- TestLog\n- TestCommitMetadata\n\ntest_integration.py:\n- test_full_workflow\n\ntest_move.py:\n- TestMoveRename\n- TestMoveAtomicity\n- TestMoveDryRun\n- TestMoveErrors\n- TestMoveMessage\n\ntest_repo.py:\n- TestGitStoreOpen\n- TestRefDictBranches\n- TestRefDictTags\n- TestRefDictMapping\n- TestRefDictDefault\n\ntest_tree.py:\n- TestNormalizePath\n- TestRebuildTree\n- TestReadHelpers\n- TestWalkTree\n\nCLI/Mirror/Watch tests \\(SKIP - not in Rust API\\):\n- test_auto_create.py: CLI auto-create tests\n- test_backup_restore.py: mirror.py functionality\n- test_cli.py: CLI commands\n- test_cli_archive.py: archive CLI\n- test_cli_cp.py: cp CLI\n- test_cli_ls.py: ls CLI\n- test_cli_refs.py: refs CLI\n- test_cli_web.py: web server CLI\n- test_cmp_cli.py: cmp CLI\n- test_fileobj.py: file objects \\(special case\\)\n- test_head.py: head ref management \\(CLI\\)\n- test_message.py: commit message formatting\n- test_objsize.py: object sizer\n- test_ref_path.py: ref path validation\n- test_serve.py: web server\n- test_sync_api.py: backup/restore API\n- test_sync.py: sync API\n- test_watch.py: watch API\nEOF)",
38
+ "Bash(cargo build:*)",
39
+ "WebFetch(domain:alblue.bandlem.com)",
40
+ "WebFetch(domain:www.kenmuse.com)",
41
+ "WebFetch(domain:tylercipriani.com)",
42
+ "WebFetch(domain:www.initialcommit.com)",
43
+ "WebFetch(domain:lirantal.com)",
44
+ "WebFetch(domain:hirok.io)",
45
+ "WebFetch(domain:docs.npmjs.com)",
46
+ "WebFetch(domain:philna.sh)",
47
+ "WebFetch(domain:docs.stripe.com)",
48
+ "Bash(npm view:*)",
49
+ "WebFetch(domain:crates.io)",
50
+ "WebFetch(domain:deepwiki.com)",
51
+ "WebFetch(domain:rclone.org)",
52
+ "WebFetch(domain:sabre.io)",
53
+ "WebFetch(domain:tessl.io)",
54
+ "Bash(deno:*)",
55
+ "Bash(python:*)"
56
+ ]
57
+ }
58
+ }
@@ -0,0 +1,7 @@
1
+ __pycache__/
2
+ *.pyc
3
+ .venv/
4
+ *.egg-info/
5
+
6
+ # JediDB
7
+ .jedidb/
@@ -0,0 +1,12 @@
1
+ version: 2
2
+ build:
3
+ os: ubuntu-22.04
4
+ tools:
5
+ python: "3.12"
6
+ mkdocs:
7
+ configuration: mkdocs.yml
8
+ python:
9
+ install:
10
+ - requirements: requirements-docs.txt
11
+ - method: pip
12
+ path: .