29 lines
557 B
TOML
29 lines
557 B
TOML
[tool.poetry]
|
|
name = "testdata"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Kristian Krsnik <git@krsnik.at>"]
|
|
readme = "README.md"
|
|
packages = [{ include = "testdata" }]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
fastapi = "^0.110.1"
|
|
pydantic = "^2.6.4"
|
|
ipaddress = "^1.0.23"
|
|
uvicorn = "^0.30.3"
|
|
|
|
[tool.poetry.scripts]
|
|
testdata = "testdata.main:main"
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.3.2"
|
|
requests = "^2.32.3"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|