philoch-bib-sdk 0.1.6__tar.gz → 0.4.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.
Files changed (80) hide show
  1. philoch_bib_sdk-0.4.0/Cargo.lock +311 -0
  2. philoch_bib_sdk-0.4.0/Cargo.toml +31 -0
  3. philoch_bib_sdk-0.4.0/PKG-INFO +15 -0
  4. philoch_bib_sdk-0.4.0/docs/fuzzy-matching.md +664 -0
  5. philoch_bib_sdk-0.4.0/docs/python-style-guide.md +471 -0
  6. philoch_bib_sdk-0.4.0/docs/rust-implementation-summary.md +194 -0
  7. philoch_bib_sdk-0.4.0/docs/rust-index-building-spec.md +328 -0
  8. philoch_bib_sdk-0.4.0/docs/rust-scorer.md +104 -0
  9. philoch_bib_sdk-0.4.0/docs/streaming-output.md +198 -0
  10. philoch_bib_sdk-0.4.0/docs/todo/fuzzy-matching-enhanced-output.md +222 -0
  11. philoch_bib_sdk-0.4.0/docs/todo/merge_fuzzy_results.py +197 -0
  12. philoch_bib_sdk-0.4.0/docs/todo/rust-build-index-implementation-plan.md +438 -0
  13. philoch_bib_sdk-0.4.0/philoch_bib_sdk/_rust.pyi +112 -0
  14. philoch_bib_sdk-0.4.0/philoch_bib_sdk/adapters/io/__init__.py +115 -0
  15. philoch_bib_sdk-0.4.0/philoch_bib_sdk/adapters/io/csv/__init__.py +308 -0
  16. philoch_bib_sdk-0.4.0/philoch_bib_sdk/adapters/io/ods/__init__.py +145 -0
  17. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/adapters/tabular_data/read_journal_volume_number_index.py +3 -5
  18. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/author/formatter.py +3 -0
  19. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/author/parser.py +19 -8
  20. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/bibitem/parser.py +28 -24
  21. philoch_bib_sdk-0.4.0/philoch_bib_sdk/interfaces/cli/__init__.py +3 -0
  22. philoch_bib_sdk-0.4.0/philoch_bib_sdk/interfaces/cli/fuzzy_matching.py +135 -0
  23. philoch_bib_sdk-0.4.0/philoch_bib_sdk/logic/__init__.py +39 -0
  24. philoch_bib_sdk-0.4.0/philoch_bib_sdk/logic/functions/__init__.py +31 -0
  25. philoch_bib_sdk-0.4.0/philoch_bib_sdk/logic/functions/comparator.py +414 -0
  26. philoch_bib_sdk-0.4.0/philoch_bib_sdk/logic/functions/fuzzy_matcher.py +796 -0
  27. philoch_bib_sdk-0.4.0/philoch_bib_sdk/logic/models_staging.py +173 -0
  28. philoch_bib_sdk-0.4.0/philoch_bib_sdk/procedures/fuzzy_matching.py +112 -0
  29. philoch_bib_sdk-0.4.0/poetry.lock +3347 -0
  30. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/pyproject.toml +21 -6
  31. philoch_bib_sdk-0.4.0/run_fuzzy_matching.py +263 -0
  32. philoch_bib_sdk-0.4.0/run_fuzzy_matching_streaming.py +280 -0
  33. philoch_bib_sdk-0.4.0/scripts/format.py +28 -0
  34. philoch_bib_sdk-0.4.0/src/lib.rs +547 -0
  35. philoch_bib_sdk-0.4.0/tests/adapters/test_read_jvn_index_from_ods.py +102 -0
  36. philoch_bib_sdk-0.4.0/tests/converters/plaintext/conftest.py +212 -0
  37. philoch_bib_sdk-0.4.0/tests/converters/plaintext/test_author_formatter.py +95 -0
  38. philoch_bib_sdk-0.4.0/tests/converters/plaintext/test_author_parser.py +101 -0
  39. philoch_bib_sdk-0.4.0/tests/converters/plaintext/test_bibitem_formatter.py +146 -0
  40. philoch_bib_sdk-0.4.0/tests/converters/plaintext/test_bibitem_parser.py +658 -0
  41. philoch_bib_sdk-0.4.0/tests/converters/plaintext/test_bibkey_formatter.py +22 -0
  42. philoch_bib_sdk-0.4.0/tests/converters/plaintext/test_bibkey_parser.py +42 -0
  43. philoch_bib_sdk-0.4.0/tests/converters/plaintext/test_date_formatter.py +26 -0
  44. philoch_bib_sdk-0.4.0/tests/converters/plaintext/test_date_parser.py +48 -0
  45. philoch_bib_sdk-0.4.0/tests/converters/plaintext/test_journal_formatter.py +24 -0
  46. philoch_bib_sdk-0.4.0/tests/converters/plaintext/test_journal_parser.py +31 -0
  47. philoch_bib_sdk-0.4.0/tests/converters/plaintext/test_page_formatter.py +20 -0
  48. philoch_bib_sdk-0.4.0/tests/converters/plaintext/test_page_parser.py +42 -0
  49. philoch_bib_sdk-0.4.0/tests/logic/functions/test_comparator.py +56 -0
  50. philoch_bib_sdk-0.4.0/tests/logic/functions/test_fuzzy_matcher.py +746 -0
  51. philoch_bib_sdk-0.4.0/tests/logic/functions/test_journal_article_matcher.py +83 -0
  52. philoch_bib_sdk-0.4.0/tests/logic/test_default_models.py +37 -0
  53. philoch_bib_sdk-0.4.0/tests/logic/test_models.py +62 -0
  54. philoch_bib_sdk-0.4.0/tests/logic/test_setup.py +31 -0
  55. philoch_bib_sdk-0.4.0/tests/processing/test_bulk_operation_styles.py +126 -0
  56. philoch_bib_sdk-0.4.0/tests/shared.py +4 -0
  57. philoch_bib_sdk-0.4.0/tests/test_tautology.py +3 -0
  58. philoch_bib_sdk-0.1.6/PKG-INFO +0 -25
  59. philoch_bib_sdk-0.1.6/philoch_bib_sdk/logic/functions/comparator.py +0 -134
  60. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/LICENSE +0 -0
  61. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/README.md +0 -0
  62. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/__init__.py +0 -0
  63. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/adapters/plaintext/bibitem_reader.py +0 -0
  64. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/latex.py +0 -0
  65. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/bib_string_formatter.py +0 -0
  66. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/bibitem/bibkey_formatter.py +0 -0
  67. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/bibitem/bibkey_parser.py +0 -0
  68. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/bibitem/date_formatter.py +0 -0
  69. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/bibitem/date_parser.py +0 -0
  70. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/bibitem/formatter.py +0 -0
  71. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/bibitem/pages_formatter.py +0 -0
  72. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/bibitem/pages_parser.py +0 -0
  73. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/journal/formatter.py +0 -0
  74. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/journal/parser.py +0 -0
  75. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/converters/plaintext/shared/renderable_formatter.py +0 -0
  76. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/logic/default_models.py +0 -0
  77. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/logic/functions/journal_article_matcher.py +0 -0
  78. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/logic/literals.py +0 -0
  79. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/logic/models.py +0 -0
  80. {philoch_bib_sdk-0.1.6 → philoch_bib_sdk-0.4.0}/philoch_bib_sdk/py.typed +0 -0
@@ -0,0 +1,311 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom",
13
+ "once_cell",
14
+ "version_check",
15
+ "zerocopy",
16
+ ]
17
+
18
+ [[package]]
19
+ name = "autocfg"
20
+ version = "1.5.0"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
23
+
24
+ [[package]]
25
+ name = "cfg-if"
26
+ version = "1.0.4"
27
+ source = "registry+https://github.com/rust-lang/crates.io-index"
28
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
29
+
30
+ [[package]]
31
+ name = "crossbeam-deque"
32
+ version = "0.8.6"
33
+ source = "registry+https://github.com/rust-lang/crates.io-index"
34
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
35
+ dependencies = [
36
+ "crossbeam-epoch",
37
+ "crossbeam-utils",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "crossbeam-epoch"
42
+ version = "0.9.18"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
45
+ dependencies = [
46
+ "crossbeam-utils",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "crossbeam-utils"
51
+ version = "0.8.21"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
54
+
55
+ [[package]]
56
+ name = "either"
57
+ version = "1.15.0"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
60
+
61
+ [[package]]
62
+ name = "getrandom"
63
+ version = "0.3.4"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
66
+ dependencies = [
67
+ "cfg-if",
68
+ "libc",
69
+ "r-efi",
70
+ "wasip2",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "heck"
75
+ version = "0.5.0"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
78
+
79
+ [[package]]
80
+ name = "indoc"
81
+ version = "2.0.7"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
84
+ dependencies = [
85
+ "rustversion",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "libc"
90
+ version = "0.2.177"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
93
+
94
+ [[package]]
95
+ name = "memoffset"
96
+ version = "0.9.1"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
99
+ dependencies = [
100
+ "autocfg",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "once_cell"
105
+ version = "1.21.3"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
108
+
109
+ [[package]]
110
+ name = "philoch_bib_sdk"
111
+ version = "0.4.0"
112
+ dependencies = [
113
+ "ahash",
114
+ "pyo3",
115
+ "rayon",
116
+ "strsim",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "portable-atomic"
121
+ version = "1.11.1"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
124
+
125
+ [[package]]
126
+ name = "proc-macro2"
127
+ version = "1.0.103"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
130
+ dependencies = [
131
+ "unicode-ident",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "pyo3"
136
+ version = "0.25.1"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
139
+ dependencies = [
140
+ "indoc",
141
+ "libc",
142
+ "memoffset",
143
+ "once_cell",
144
+ "portable-atomic",
145
+ "pyo3-build-config",
146
+ "pyo3-ffi",
147
+ "pyo3-macros",
148
+ "unindent",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "pyo3-build-config"
153
+ version = "0.25.1"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
156
+ dependencies = [
157
+ "once_cell",
158
+ "target-lexicon",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "pyo3-ffi"
163
+ version = "0.25.1"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
166
+ dependencies = [
167
+ "libc",
168
+ "pyo3-build-config",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "pyo3-macros"
173
+ version = "0.25.1"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
176
+ dependencies = [
177
+ "proc-macro2",
178
+ "pyo3-macros-backend",
179
+ "quote",
180
+ "syn",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "pyo3-macros-backend"
185
+ version = "0.25.1"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
188
+ dependencies = [
189
+ "heck",
190
+ "proc-macro2",
191
+ "pyo3-build-config",
192
+ "quote",
193
+ "syn",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "quote"
198
+ version = "1.0.41"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
201
+ dependencies = [
202
+ "proc-macro2",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "r-efi"
207
+ version = "5.3.0"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
210
+
211
+ [[package]]
212
+ name = "rayon"
213
+ version = "1.11.0"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
216
+ dependencies = [
217
+ "either",
218
+ "rayon-core",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "rayon-core"
223
+ version = "1.13.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
226
+ dependencies = [
227
+ "crossbeam-deque",
228
+ "crossbeam-utils",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "rustversion"
233
+ version = "1.0.22"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
236
+
237
+ [[package]]
238
+ name = "strsim"
239
+ version = "0.11.1"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
242
+
243
+ [[package]]
244
+ name = "syn"
245
+ version = "2.0.108"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
248
+ dependencies = [
249
+ "proc-macro2",
250
+ "quote",
251
+ "unicode-ident",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "target-lexicon"
256
+ version = "0.13.4"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
259
+
260
+ [[package]]
261
+ name = "unicode-ident"
262
+ version = "1.0.22"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
265
+
266
+ [[package]]
267
+ name = "unindent"
268
+ version = "0.2.4"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
271
+
272
+ [[package]]
273
+ name = "version_check"
274
+ version = "0.9.5"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
277
+
278
+ [[package]]
279
+ name = "wasip2"
280
+ version = "1.0.1+wasi-0.2.4"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
283
+ dependencies = [
284
+ "wit-bindgen",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "wit-bindgen"
289
+ version = "0.46.0"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
292
+
293
+ [[package]]
294
+ name = "zerocopy"
295
+ version = "0.8.27"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
298
+ dependencies = [
299
+ "zerocopy-derive",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "zerocopy-derive"
304
+ version = "0.8.27"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
307
+ dependencies = [
308
+ "proc-macro2",
309
+ "quote",
310
+ "syn",
311
+ ]
@@ -0,0 +1,31 @@
1
+ [package]
2
+ name = "philoch_bib_sdk"
3
+ version = "0.4.0"
4
+ edition = "2021"
5
+ readme = "README.md"
6
+
7
+ [lib]
8
+ name = "_rust"
9
+ crate-type = ["cdylib"]
10
+
11
+ [dependencies]
12
+ pyo3 = "0.25.0"
13
+ ahash = "0.8"
14
+ rayon = "1.11.0"
15
+ strsim = "0.11.1"
16
+
17
+ [profile.release]
18
+ opt-level = 3
19
+ lto = true
20
+ codegen-units = 1
21
+
22
+ [lints.clippy]
23
+ all = "warn"
24
+ cast_possible_truncation = "warn"
25
+ cast_sign_loss = "warn"
26
+ cast_possible_wrap = "warn"
27
+ cast_lossless = "warn"
28
+ redundant_clone = "warn"
29
+
30
+ [lints.rust]
31
+ warnings = "deny"
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: philoch-bib-sdk
3
+ Version: 0.4.0
4
+ License-File: LICENSE
5
+ Summary: Standard development kit for the Philosophie Bibliography project
6
+ Author-email: Luis Alejandro Bordo García <luis.bordo@philosophie.ch>
7
+ Maintainer-email: Luis Alejandro Bordo García <tech@philosophie.ch>
8
+ License: MIT
9
+ Requires-Python: >=3.13
10
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
11
+
12
+ # Philosophie.ch Bibliography SDK
13
+
14
+ This repository contains the standard development kit for the bibliography project of the [Philosophie.ch](https://philosophie.ch) association.
15
+