diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-08-09 03:52:58 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-08-09 03:52:58 +0200 |
| commit | 271adc8504aad32075d75d06fd42023877a649ec (patch) | |
| tree | fe8697761d635a5cac7e0693f2e588a38a7968b9 /packages/meshbay-node/pyproject.toml | |
| download | meshbay-271adc8504aad32075d75d06fd42023877a649ec.tar.gz | |
chore: initialize monorepo structure for MeshBay
3-package layout: meshbay-common (shared crypto/protocol),
meshbay-hub (FastAPI server), meshbay-node (local daemon).
Includes validated POC spikes 1-6 in poc/, architecture drafts
v1/v2 in docs/, and CLAUDE.md project conventions.
All cryptographic primitives extracted from POC into
meshbay_common/crypto.py (GEK wrap/unwrap, chunk key derivation,
keystore encryption, chunk signing).
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'packages/meshbay-node/pyproject.toml')
| -rw-r--r-- | packages/meshbay-node/pyproject.toml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/packages/meshbay-node/pyproject.toml b/packages/meshbay-node/pyproject.toml new file mode 100644 index 0000000..48231ad --- /dev/null +++ b/packages/meshbay-node/pyproject.toml @@ -0,0 +1,34 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "meshbay-node" +version = "0.1.0" +description = "MeshBay Node — local file host, streaming server, and group daemon" +requires-python = ">=3.12" +dependencies = [ + "meshbay-common>=0.1.0", + "fastapi>=0.115", # local web UI on localhost:18000 + "uvicorn[standard]>=0.30", + "httpx>=0.28", # hub client + "watchdog>=5.0", # directory monitoring + "aioice>=0.9", # ICE/STUN for NAT traversal + # aioquic>=1.0 added in v2 (QUIC transport) +] + +[project.optional-dependencies] +dev = ["pytest>=8", "pytest-asyncio>=0.24", "ruff>=0.6"] + +[project.scripts] +meshbay-node = "meshbay_node.daemon:main" + +[tool.hatch.build.targets.wheel] +packages = ["src/meshbay_node"] + +# RPM/DEB: meshbay-node +# Systemd service: meshbay-node.service +# Config: /etc/meshbay/node.conf (or ~/.config/meshbay/node.conf per-user) +# Data: ~/.local/share/meshbay/node/ +# Keystore: ~/.config/meshbay/keystore.enc +# Local UI: http://localhost:18000 |