blob: 370d217778de950f624e6975f81662f8b2bd36ab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "meshbay-common"
version = "0.10.0"
description = "MeshBay shared cryptographic primitives and protocol types"
requires-python = ">=3.12"
dependencies = [
"cryptography>=43.0",
"PyJWT>=2.9",
"blake3>=1.0",
"msgpack>=1.1",
"zstandard>=0.23",
]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-asyncio>=0.24", "pytest-timeout>=2.3", "ruff>=0.6"]
[tool.hatch.build.targets.wheel]
packages = ["src/meshbay_common"]
# RPM/DEB: python3-meshbay-common
# Dependency of both meshbay-hub and meshbay-node
|