Files
repo-scoping/pyproject.toml
2026-05-02 21:55:35 +02:00

33 lines
601 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",
]
[project.scripts]
repo-scoping = "repo_registry.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]