| [build-system] | |
| requires = ["setuptools>=68", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "capscore-api" | |
| version = "0.1.0" | |
| requires-python = ">=3.12" | |
| dependencies = [ | |
| "fastapi>=0.111.0", | |
| "uvicorn[standard]>=0.29.0", | |
| "pydantic>=2.7.0", | |
| "pydantic-settings>=2.3.0", | |
| "anthropic>=0.28.0", | |
| "openai>=1.40.0", | |
| "httpx>=0.27.0", | |
| "gitpython>=3.1.43", | |
| "jinja2>=3.1.4", | |
| "python-multipart>=0.0.9", | |
| "aiofiles>=23.2.1", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=8.2.0", | |
| "pytest-asyncio>=0.23.0", | |
| "httpx>=0.27.0", | |
| ] | |
| [tool.setuptools.packages.find] | |
| where = ["."] | |
| include = ["app*"] | |