openviatica 0.1.2__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 (32) hide show
  1. openviatica-0.1.2/.gitignore +210 -0
  2. openviatica-0.1.2/Cargo.lock +277 -0
  3. openviatica-0.1.2/Cargo.toml +14 -0
  4. openviatica-0.1.2/GOVERNANCE.md +11 -0
  5. openviatica-0.1.2/LICENSE +201 -0
  6. openviatica-0.1.2/MAINTAINERS +10 -0
  7. openviatica-0.1.2/NOTICE +14 -0
  8. openviatica-0.1.2/PKG-INFO +10 -0
  9. openviatica-0.1.2/README.md +33 -0
  10. openviatica-0.1.2/docs/README.md +28 -0
  11. openviatica-0.1.2/docs/apache2.tmpl +13 -0
  12. openviatica-0.1.2/docs/contributions/README.md +15 -0
  13. openviatica-0.1.2/docs/old/code/Diagrams/OpenViatica Concept Map.drawio +16 -0
  14. openviatica-0.1.2/docs/old/code/Diagrams/README.md +2 -0
  15. openviatica-0.1.2/docs/old/code/README.md +36 -0
  16. openviatica-0.1.2/docs/old/contributions/README.md +80 -0
  17. openviatica-0.1.2/docs/old/project/README.md +50 -0
  18. openviatica-0.1.2/docs/old/project/v1.0/Interactions_Diagram.drawio +204 -0
  19. openviatica-0.1.2/docs/old/project/v1.0/README.md +110 -0
  20. openviatica-0.1.2/docs/old/usage/README.md +2 -0
  21. openviatica-0.1.2/docs/project/REAMDE.md +50 -0
  22. openviatica-0.1.2/mkdocs.yml +31 -0
  23. openviatica-0.1.2/pyproject.toml +68 -0
  24. openviatica-0.1.2/python/OpenViatica/__init__.py +38 -0
  25. openviatica-0.1.2/python/OpenViatica/_core.py +37 -0
  26. openviatica-0.1.2/python/OpenViatica/_rs_core.pyi +7 -0
  27. openviatica-0.1.2/python/OpenViatica/py.typed +0 -0
  28. openviatica-0.1.2/results.txt +5 -0
  29. openviatica-0.1.2/src/lib.rs +22 -0
  30. openviatica-0.1.2/tests/ovutils/test_ovutils.py +23 -0
  31. openviatica-0.1.2/tests/test_import.py +31 -0
  32. openviatica-0.1.2/uv.lock +1062 -0
@@ -0,0 +1,210 @@
1
+ # Custom git-ignores
2
+ .venv-dev
3
+ .vscode
4
+ # Byte-compiled / optimized / DLL files
5
+ __pycache__/
6
+ *.py[codz]
7
+ *$py.class
8
+
9
+ # C extensions
10
+ *.so
11
+
12
+ # Distribution / packaging
13
+ .Python
14
+ build/
15
+ develop-eggs/
16
+ dist/
17
+ downloads/
18
+ eggs/
19
+ .eggs/
20
+ lib/
21
+ lib64/
22
+ parts/
23
+ sdist/
24
+ var/
25
+ wheels/
26
+ share/python-wheels/
27
+ *.egg-info/
28
+ .installed.cfg
29
+ *.egg
30
+ MANIFEST
31
+
32
+ # PyInstaller
33
+ # Usually these files are written by a python script from a template
34
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
35
+ *.manifest
36
+ *.spec
37
+
38
+ # Installer logs
39
+ pip-log.txt
40
+ pip-delete-this-directory.txt
41
+
42
+ # Unit test / coverage reports
43
+ htmlcov/
44
+ .tox/
45
+ .nox/
46
+ .coverage
47
+ .coverage.*
48
+ .cache
49
+ nosetests.xml
50
+ coverage.xml
51
+ *.cover
52
+ *.py.cover
53
+ .hypothesis/
54
+ .pytest_cache/
55
+ cover/
56
+
57
+ # Translations
58
+ *.mo
59
+ *.pot
60
+
61
+ # Django stuff:
62
+ *.log
63
+ local_settings.py
64
+ db.sqlite3
65
+ db.sqlite3-journal
66
+
67
+ # Flask stuff:
68
+ instance/
69
+ .webassets-cache
70
+
71
+ # Scrapy stuff:
72
+ .scrapy
73
+
74
+ # Sphinx documentation
75
+ docs/_build/
76
+
77
+ # PyBuilder
78
+ .pybuilder/
79
+ target/
80
+
81
+ # Jupyter Notebook
82
+ .ipynb_checkpoints
83
+
84
+ # IPython
85
+ profile_default/
86
+ ipython_config.py
87
+
88
+ # pyenv
89
+ # For a library or package, you might want to ignore these files since the code is
90
+ # intended to run in multiple environments; otherwise, check them in:
91
+ # .python-version
92
+
93
+ # pipenv
94
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
95
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
96
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
97
+ # install all needed dependencies.
98
+ #Pipfile.lock
99
+
100
+ # UV
101
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
102
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
103
+ # commonly ignored for libraries.
104
+ #uv.lock
105
+
106
+ # poetry
107
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
108
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
109
+ # commonly ignored for libraries.
110
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
111
+ #poetry.lock
112
+ #poetry.toml
113
+
114
+ # pdm
115
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
116
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
117
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
118
+ #pdm.lock
119
+ #pdm.toml
120
+ .pdm-python
121
+ .pdm-build/
122
+
123
+ # pixi
124
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
125
+ #pixi.lock
126
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
127
+ # in the .venv directory. It is recommended not to include this directory in version control.
128
+ .pixi
129
+
130
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
131
+ __pypackages__/
132
+
133
+ # Celery stuff
134
+ celerybeat-schedule
135
+ celerybeat.pid
136
+
137
+ # SageMath parsed files
138
+ *.sage.py
139
+
140
+ # Environments
141
+ .env
142
+ .envrc
143
+ .venv
144
+ env/
145
+ venv/
146
+ ENV/
147
+ env.bak/
148
+ venv.bak/
149
+
150
+ # Spyder project settings
151
+ .spyderproject
152
+ .spyproject
153
+
154
+ # Rope project settings
155
+ .ropeproject
156
+
157
+ # mkdocs documentation
158
+ /site
159
+
160
+ # mypy
161
+ .mypy_cache/
162
+ .dmypy.json
163
+ dmypy.json
164
+
165
+ # Pyre type checker
166
+ .pyre/
167
+
168
+ # pytype static type analyzer
169
+ .pytype/
170
+
171
+ # Cython debug symbols
172
+ cython_debug/
173
+
174
+ # PyCharm
175
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
176
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
177
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
178
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
179
+ #.idea/
180
+
181
+ # Abstra
182
+ # Abstra is an AI-powered process automation framework.
183
+ # Ignore directories containing user credentials, local state, and settings.
184
+ # Learn more at https://abstra.io/docs
185
+ .abstra/
186
+
187
+ # Visual Studio Code
188
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
189
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
190
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
191
+ # you could uncomment the following to ignore the entire vscode folder
192
+ # .vscode/
193
+
194
+ # Ruff stuff:
195
+ .ruff_cache/
196
+
197
+ # PyPI configuration file
198
+ .pypirc
199
+
200
+ # Cursor
201
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
202
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
203
+ # refer to https://docs.cursor.com/context/ignore-files
204
+ .cursorignore
205
+ .cursorindexingignore
206
+
207
+ # Marimo
208
+ marimo/_static/
209
+ marimo/_lsp/
210
+ __marimo__/
@@ -0,0 +1,277 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "autocfg"
7
+ version = "1.5.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
10
+
11
+ [[package]]
12
+ name = "bitflags"
13
+ version = "2.10.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
16
+
17
+ [[package]]
18
+ name = "cc"
19
+ version = "1.2.55"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
22
+ dependencies = [
23
+ "find-msvc-tools",
24
+ "shlex",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "cfg-if"
29
+ version = "1.0.4"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
32
+
33
+ [[package]]
34
+ name = "find-msvc-tools"
35
+ version = "0.1.9"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
38
+
39
+ [[package]]
40
+ name = "heck"
41
+ version = "0.4.1"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
44
+
45
+ [[package]]
46
+ name = "indoc"
47
+ version = "2.0.7"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
50
+ dependencies = [
51
+ "rustversion",
52
+ ]
53
+
54
+ [[package]]
55
+ name = "libc"
56
+ version = "0.2.180"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
59
+
60
+ [[package]]
61
+ name = "lock_api"
62
+ version = "0.4.14"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
65
+ dependencies = [
66
+ "scopeguard",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "memoffset"
71
+ version = "0.9.1"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
74
+ dependencies = [
75
+ "autocfg",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "once_cell"
80
+ version = "1.21.3"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
83
+
84
+ [[package]]
85
+ name = "open-viatica"
86
+ version = "0.1.0"
87
+ dependencies = [
88
+ "pyo3",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "parking_lot"
93
+ version = "0.12.5"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
96
+ dependencies = [
97
+ "lock_api",
98
+ "parking_lot_core",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "parking_lot_core"
103
+ version = "0.9.12"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
106
+ dependencies = [
107
+ "cfg-if",
108
+ "libc",
109
+ "redox_syscall",
110
+ "smallvec",
111
+ "windows-link",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "portable-atomic"
116
+ version = "1.13.1"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
119
+
120
+ [[package]]
121
+ name = "proc-macro2"
122
+ version = "1.0.106"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
125
+ dependencies = [
126
+ "unicode-ident",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "pyo3"
131
+ version = "0.21.2"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
134
+ dependencies = [
135
+ "cfg-if",
136
+ "indoc",
137
+ "libc",
138
+ "memoffset",
139
+ "parking_lot",
140
+ "portable-atomic",
141
+ "pyo3-build-config",
142
+ "pyo3-ffi",
143
+ "pyo3-macros",
144
+ "unindent",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "pyo3-build-config"
149
+ version = "0.21.2"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
152
+ dependencies = [
153
+ "once_cell",
154
+ "python3-dll-a",
155
+ "target-lexicon",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "pyo3-ffi"
160
+ version = "0.21.2"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
163
+ dependencies = [
164
+ "libc",
165
+ "pyo3-build-config",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "pyo3-macros"
170
+ version = "0.21.2"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
173
+ dependencies = [
174
+ "proc-macro2",
175
+ "pyo3-macros-backend",
176
+ "quote",
177
+ "syn",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "pyo3-macros-backend"
182
+ version = "0.21.2"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
185
+ dependencies = [
186
+ "heck",
187
+ "proc-macro2",
188
+ "pyo3-build-config",
189
+ "quote",
190
+ "syn",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "python3-dll-a"
195
+ version = "0.2.14"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8"
198
+ dependencies = [
199
+ "cc",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "quote"
204
+ version = "1.0.44"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
207
+ dependencies = [
208
+ "proc-macro2",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "redox_syscall"
213
+ version = "0.5.18"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
216
+ dependencies = [
217
+ "bitflags",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "rustversion"
222
+ version = "1.0.22"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
225
+
226
+ [[package]]
227
+ name = "scopeguard"
228
+ version = "1.2.0"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
231
+
232
+ [[package]]
233
+ name = "shlex"
234
+ version = "1.3.0"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
237
+
238
+ [[package]]
239
+ name = "smallvec"
240
+ version = "1.15.1"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
243
+
244
+ [[package]]
245
+ name = "syn"
246
+ version = "2.0.114"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
249
+ dependencies = [
250
+ "proc-macro2",
251
+ "quote",
252
+ "unicode-ident",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "target-lexicon"
257
+ version = "0.12.16"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
260
+
261
+ [[package]]
262
+ name = "unicode-ident"
263
+ version = "1.0.22"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
266
+
267
+ [[package]]
268
+ name = "unindent"
269
+ version = "0.2.4"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
272
+
273
+ [[package]]
274
+ name = "windows-link"
275
+ version = "0.2.1"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
@@ -0,0 +1,14 @@
1
+ [package]
2
+ name = "open-viatica" # Rust crate name
3
+ version = "0.1.0"
4
+ edition = "2021"
5
+ license = "Apache-2.0"
6
+ readme = "README.md"
7
+
8
+ [lib]
9
+ name = "open_viatica_rs" # The name you'll import in Python
10
+ crate-type = ["cdylib"]
11
+
12
+ [dependencies]
13
+ # PyO3 provides the Python bindings
14
+ pyo3 = { version = "0.21", features = ["abi3-py38", "extension-module", "generate-import-lib"] }
@@ -0,0 +1,11 @@
1
+ # Project Governance
2
+
3
+ ## 1. Absolute Authority
4
+ OpenViatica is a "Benevolent Dictator for Life" (BDFL) project. **ftorres7382** is the sole individual with final decision-making power over the codebase, roadmap, and architecture.
5
+
6
+ ## 2. Trademark & Branding (STRICT)
7
+ The names **Viatica**, **OpenViatica**, **Viatica Studio**, the **OV** initials, and any derivative or confusingly similar marks are the exclusive property and trademarks of **ftorres7382**.
8
+
9
+ * **No Unauthorized Use:** No individual or company (including partners) may use these names, initials, or marks for products, GUIs, or derivative works without a written license.
10
+ * **Mandatory Renaming:** Any fork, redistribution, or implementation of this code must be renamed to something entirely distinct that does not include the word "Viatica" or the initials "OV."
11
+ * **Attribution:** Use of the descriptive phrase "Built on OpenViatica" is permitted only for technical attribution and must not be used as the primary name of any product.