woollama-core 0.5.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.
@@ -0,0 +1,8 @@
1
+ # Cargo workspace root for the Rust port of the woollama router service
2
+ # (see docs/rust-router-port.md). Members:
3
+ # woollama-core — the engine cdylib/wheel (today; becomes a pure rlib in slice 1)
4
+ # woollama-server — the crate that builds the `woollamad` router daemon (grows from slice 2)
5
+ # The root `woollama` package below stays as the crates.io-name placeholder.
6
+ [workspace]
7
+ members = ["woollama-engine", "woollama-core"]
8
+ resolver = "2"
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: woollama-core
3
+ Version: 0.5.2
4
+ Classifier: Programming Language :: Rust
5
+ Classifier: Programming Language :: Python :: Implementation :: CPython
6
+ Summary: The embeddable woollama model-management core (Rust) — start of the v1.0 port.
7
+ Requires-Python: >=3.11
@@ -0,0 +1,28 @@
1
+ [build-system]
2
+ requires = ["maturin>=1.7,<2"]
3
+ build-backend = "maturin"
4
+
5
+ [project]
6
+ name = "woollama-core"
7
+ version = "0.5.2"
8
+ description = "The embeddable woollama model-management core (Rust) — start of the v1.0 port."
9
+ requires-python = ">=3.11"
10
+ classifiers = [
11
+ "Programming Language :: Rust",
12
+ "Programming Language :: Python :: Implementation :: CPython",
13
+ ]
14
+
15
+ [tool.maturin]
16
+ # Ship the extension as `woollama.core` — a submodule of the PEP 420 `woollama`
17
+ # namespace (no woollama/__init__.py), so it IS the import the server + lackpy use:
18
+ # `from woollama.core import complete`. The dist is `woollama-core`; the import is
19
+ # `woollama.core`. (The server dist stops shipping its own woollama.core and depends
20
+ # on this — the actual dist-split — as the productionization step.)
21
+ module-name = "woollama.core"
22
+ strip = true
23
+ manifest-path = "woollama-core/Cargo.toml"
24
+ python-source = "python"
25
+
26
+ [tool.pytest.ini_options]
27
+ # Self-contained: don't inherit the parent woollama pyproject's pytest config.
28
+ testpaths = ["tests"]
@@ -0,0 +1,4 @@
1
+ /target
2
+ # maturin develop drops the compiled extension into the source tree:
3
+ python/woollama/*.so
4
+ __pycache__/