testdata/pyproject.toml

28 lines
577 B
TOML
Raw Permalink Normal View History

2024-04-10 16:26:38 +00:00
[tool.poetry]
name = "testdata"
2024-04-10 16:26:38 +00:00
version = "0.1.0"
description = ""
authors = ["Kristian Krsnik <git@krsnik.at>"]
2024-04-10 16:26:38 +00:00
readme = "README.md"
packages = [{ include = "testdata" }]
2024-04-10 16:26:38 +00:00
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.6.4"
2024-04-10 19:00:26 +00:00
ipaddress = "^1.0.23"
uvicorn = "^0.30.3"
2024-08-04 18:37:06 +00:00
python-fasthtml = "^0.2.1"
2024-04-10 16:26:38 +00:00
[tool.poetry.scripts]
testdata = "testdata.main:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
requests = "^2.32.3"
types-requests = "^2.32.0.20240712"
2024-08-04 17:56:53 +00:00
pylint = "^3.2.6"
2024-04-10 16:26:38 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"