Files
repo-scoping/pyproject.toml

30 lines
542 B
TOML

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "repo-registry"
version = "0.1.0"
description = "Repository Scoping"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115",
"python-multipart>=0.0.20",
"uvicorn[standard]>=0.30",
"pydantic-settings>=2.4",
]
[project.optional-dependencies]
dev = [
"httpx>=0.28",
"pytest>=7.4",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]