52 lines
1004 B
TOML
52 lines
1004 B
TOML
[project]
|
|
name = "radicle-reticulum"
|
|
version = "0.1.0"
|
|
description = "Radicle transport adapter for Reticulum mesh networking"
|
|
requires-python = ">=3.10"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "Radicle-Reticulum Contributors"}
|
|
]
|
|
keywords = ["radicle", "reticulum", "mesh", "p2p", "git", "decentralized"]
|
|
dependencies = [
|
|
"rns>=0.7.0",
|
|
"lxmf>=0.4.0",
|
|
"cryptography>=41.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
"mypy>=1.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
radicle-rns = "radicle_reticulum.cli:main"
|
|
|
|
[tool.uv]
|
|
package = true
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
"mypy>=1.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/radicle_reticulum"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|