Initial reyna-cli implementation

This commit is contained in:
Adolfo Reyna
2026-06-10 22:29:02 -04:00
commit 97379a1046
20 changed files with 2261 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
[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",
]
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"]