repo-scoping/pyproject.toml

33 lines
599 B
TOML
Raw Normal View History

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
2026-05-15 21:16:34 +02:00
name = "repo-scoping"
version = "0.1.0"
description = "Repository Scoping"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115",
2026-04-25 23:04:15 +02:00
"python-multipart>=0.0.20",
"uvicorn[standard]>=0.30",
"pydantic-settings>=2.4",
]
[project.optional-dependencies]
dev = [
"httpx>=0.28",
"pytest>=7.4",
]
2026-05-02 21:55:35 +02:00
[project.scripts]
2026-05-15 21:16:34 +02:00
repo-scoping = "repo_scoping.cli:main"
2026-05-02 21:55:35 +02:00
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]