mirror of
https://github.com/ruvnet/RuView
synced 2026-07-22 17:23:19 +00:00
f74e73ccf7
ADR-184 P2 (version promotion + changelog) — version-metadata prep only;
triggers NO publish (P3's real PyPI upload is still gated on the manual
Trusted Publisher registration on pypi.org).
- python/pyproject.toml: version 2.0.0a1 -> 2.0.0; classifier
"Development Status :: 3 - Alpha" -> "5 - Production/Stable".
- python/ruview-meta/pyproject.toml: version 2.0.0a1 -> 2.0.0; same
classifier bump; repointed the wifi-densepose dependency pins
(base + [client]) from ==2.0.0a1 to ==2.0.0 so the stable ruview
meta-package depends on the stable wifi-densepose, not the alpha.
- python/wifi_densepose/__init__.py: runtime __version__ 2.0.0a1 -> 2.0.0
(caught during the sanity check — it would otherwise contradict the
stable wheel version reported by `wifi_densepose.__version__`).
- CHANGELOG.md: [Unreleased] entry recording the promotion.
Sanity-checked that the core package genuinely deserves "Production/Stable"
(not just a version-string change):
maturin build --release --strip -> default wheel 279 KB
pytest python/tests/ (excluding [aether]/[meridian]/[mat] extra modules)
-> 185 passed, 0 failed (smoke/keypoint/pose/vitals/bfld/security/
WS+MQTT client)
post-bump: wheel installs as 2.0.0, __version__ = 2.0.0, smoke 6/6 pass.
No publish/tag/release commands were run.
63 lines
2.1 KiB
TOML
63 lines
2.1 KiB
TOML
# ADR-117 sibling release — `ruview` meta-package.
|
|
#
|
|
# Pure-Python wheel that re-exports everything from `wifi-densepose`
|
|
# under the alias `ruview`. They're the same code, distributed under
|
|
# two PyPI names so users can `pip install ruview` (the brand) or
|
|
# `pip install wifi-densepose` (the technical name) — both end up
|
|
# with the same compiled DSP available.
|
|
#
|
|
# Build:
|
|
# cd python/ruview-meta
|
|
# python -m build
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ruview"
|
|
version = "2.0.0"
|
|
description = "RuView — ambient intelligence from WiFi CSI. Meta-package; installs `wifi-densepose` and re-exports it under the `ruview` namespace. See https://github.com/ruvnet/RuView."
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = { text = "MIT" }
|
|
authors = [{ name = "rUv", email = "ruv@ruv.net" }]
|
|
keywords = [
|
|
"wifi", "csi", "pose-estimation", "vital-signs",
|
|
"biometric", "ambient-intelligence", "home-assistant", "matter",
|
|
"ruview",
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Science/Research",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Scientific/Engineering",
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
"Typing :: Typed",
|
|
]
|
|
dependencies = [
|
|
# Pin to the matching v2 release so `pip install ruview` always gets a
|
|
# compatible wifi-densepose.
|
|
"wifi-densepose==2.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
client = ["wifi-densepose[client]==2.0.0"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/ruvnet/RuView"
|
|
Repository = "https://github.com/ruvnet/RuView"
|
|
Issues = "https://github.com/ruvnet/RuView/issues"
|
|
Documentation = "https://github.com/ruvnet/RuView/tree/main/docs"
|
|
|
|
[tool.setuptools]
|
|
packages = ["ruview"]
|
|
package-dir = { "" = "src" }
|