Files
reyna-cli/pyproject.toml
2026-06-15 18:59:43 -04:00

36 lines
746 B
TOML

[project]
name = "reyna-cli"
version = "0.1.0"
description = "Reyna CLI - A local device registry and MCP client"
authors = [{ name = "Adolfo Reyna", email = "adolforeyna@gmail.com" }]
dependencies = [
"typer",
"httpx",
"pyyaml",
"pydantic",
"rich",
"pytest-mock",
"pymongo",
"tplinkrouterc6u==5.21.0",
"edge-tts",
"fastapi>=0.136.3",
"uvicorn>=0.49.0",
"authlib>=1.7.2",
"itsdangerous>=2.2.0",
"jinja2>=3.1.6",
"python-multipart>=0.0.32",
]
readme = "README.md"
requires-python = ">=3.10"
[project.scripts]
reyna-cli = "reyna_cli.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]