Spaces:
Sleeping
Sleeping
| [build-system] | |
| requires = ["setuptools", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "clafoutis" | |
| version = "0.1.0" | |
| description = "Backend socle for Clafoutis" | |
| requires-python = ">=3.11" | |
| dependencies = [ | |
| "fastapi>=0.110,<1.0", | |
| "uvicorn>=0.27,<1.0", | |
| "pydantic>=2.6,<3.0", | |
| "pydantic-settings>=2.2,<3.0", | |
| "httpx>=0.27,<1.0", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=8.0,<9.0", | |
| "pytest-asyncio>=0.23,<1.0", | |
| ] | |
| [tool.pytest.ini_options] | |
| pythonpath = [ | |
| "app/backend", | |
| ] | |
| testpaths = [ | |
| "app/tests", | |
| ] | |