26 lines
623 B
TOML
26 lines
623 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "canned-prompts-service"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Hosted registry and index service for Canned Prompt Format packages"
|
||
|
|
requires-python = ">=3.12"
|
||
|
|
dependencies = [
|
||
|
|
"fastapi>=0.115.0",
|
||
|
|
"uvicorn[standard]>=0.32.0",
|
||
|
|
"sqlalchemy>=2.0.0",
|
||
|
|
"alembic>=1.14.0",
|
||
|
|
"pydantic>=2.10.0",
|
||
|
|
"pydantic-settings>=2.7.0",
|
||
|
|
"psycopg[binary]>=3.2.0",
|
||
|
|
"pyyaml>=6.0.3",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = ["pytest>=8", "httpx>=0.28.0"]
|
||
|
|
|
||
|
|
[tool.hatch.build.targets.wheel]
|
||
|
|
packages = ["src/canned_prompts_service"]
|