28 lines
550 B
TOML
28 lines
550 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",
|
|
]
|
|
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"]
|