Files
gcontext/api/pyproject.toml
T
bernatsamperaandClaude Opus 4.6 8d879fa000 Add rate limiting to API submit endpoint and expose download count
5/hour/IP on submit, downloads field in admin output.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-08-10 09:28:10 +02:00

27 lines
564 B
TOML

[project]
name = "gcontext-workflows-api"
version = "0.1.0"
description = "Marketplace backend for gcontext workflow templates: Postgres-backed store with submit-for-review publishing."
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115",
"uvicorn>=0.30",
"sqlalchemy>=2.0",
"psycopg[binary]>=3.2",
"pyyaml>=6.0",
"slowapi>=0.1.9",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"httpx>=0.27",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]