27 lines
370 B
TOML
27 lines
370 B
TOML
[project]
|
|
name = "spud"
|
|
version = "0.0.0"
|
|
requires-python = "~=3.12"
|
|
dependencies = [
|
|
"click~=8.0",
|
|
"httpx",
|
|
"pydantic~=2.0",
|
|
"fastapi~=0.110.0",
|
|
"uvicorn[standard]~=0.29",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
sast = [
|
|
"black",
|
|
"pylint"
|
|
]
|
|
test = [
|
|
"pytest"
|
|
]
|
|
|
|
[project.scripts]
|
|
spud = "spud.cli:cli"
|
|
|
|
[tool.setuptools]
|
|
packages = ["spud"]
|
|
|