Files
Remote-Terminal-for-MeshCore/pyproject.toml
2026-01-13 20:11:51 -08:00

26 lines
545 B
TOML

[project]
name = "remoteterm-meshcore"
version = "1.0.1"
description = "RemoteTerm - Web interface for MeshCore radio mesh networks"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"pydantic-settings>=2.0.0",
"aiosqlite>=0.19.0",
"pycryptodome>=3.20.0",
"meshcore",
]
[project.optional-dependencies]
test = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"httpx>=0.27.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]