generated from coulomb/repo-seed
33 lines
599 B
TOML
33 lines
599 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "repo-scoping"
|
|
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_scoping.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["src"]
|