Files
prompts/pyproject.toml
T
John Lancaster 0b2d45d419 pytest add
2026-06-20 19:44:02 -05:00

34 lines
611 B
TOML

[project]
name = "prompts"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.0",
"fastmcp>=2.10.0",
"pydantic-settings>=2.0.0",
"pyyaml>=6.0.2",
"uvicorn[standard]>=0.34.0",
"zensical>=0.0.45",
]
[project.scripts]
personal-mcp = "personal_mcp.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/personal_mcp"]
[dependency-groups]
dev = [
"pre-commit>=4.6.0",
"ruff>=0.15.18",
]
test = [
"pytest>=9.1.1",
"pytest-asyncio>=1.4.0",
"pytest-cov>=7.1.0",
]