29 lines
497 B
TOML
29 lines
497 B
TOML
[project]
|
|
name = "testdata"
|
|
version = "1.1.0"
|
|
requires-python = ">=3.11, <4"
|
|
dependencies = [
|
|
"fastapi==0.110.*",
|
|
"uvicorn==0.34.*",
|
|
"pydantic==2.6.*",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest==8.3.*",
|
|
"requests==2.32.*"
|
|
]
|
|
|
|
[project.scripts]
|
|
testdata = "testdata.main:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
testdata = ["py.typed"]
|