2025-01-11 14:17:42 -07:00
|
|
|
[project]
|
2024-05-16 22:54:36 -06:00
|
|
|
name = "teufa"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
readme = "README.md"
|
2025-01-11 14:17:42 -07:00
|
|
|
authors = [
|
|
|
|
{name = "Brian Rosner", email = "brian@brosner.com"},
|
|
|
|
]
|
|
|
|
license = {text = "MIT"}
|
|
|
|
requires-python = "<4.0,>=3.12"
|
|
|
|
dependencies = [
|
|
|
|
"click<9.0.0,>=8.1.7",
|
|
|
|
"gunicorn<23.0.0,>=22.0.0",
|
|
|
|
"flask<4.0.0,>=3.0.3",
|
|
|
|
"flask-sqlalchemy<4.0.0,>=3.1.1",
|
|
|
|
"psycopg<4.0.0,>=3.1.19",
|
|
|
|
"alembic<2.0.0,>=1.13.1",
|
|
|
|
"pydantic<3.0.0,>=2.7.1",
|
|
|
|
"flask-restful<1.0.0,>=0.3.10",
|
2024-05-16 22:54:36 -06:00
|
|
|
]
|
|
|
|
|
2025-01-11 14:17:42 -07:00
|
|
|
[project.scripts]
|
2024-05-16 22:54:36 -06:00
|
|
|
teufa = "teufa.cli:cli"
|
|
|
|
|
2025-01-11 14:17:42 -07:00
|
|
|
[dependency-groups]
|
|
|
|
test = [
|
|
|
|
"pytest<9.0.0,>=8.2.0",
|
|
|
|
"pytest-cov<6.0.0,>=5.0.0",
|
|
|
|
]
|
|
|
|
dev = [
|
|
|
|
"pydeps<2.0.0,>=1.12.20",
|
|
|
|
"ruff<1.0.0,>=0.5.0",
|
|
|
|
]
|
2024-05-17 21:42:03 -06:00
|
|
|
|
2025-01-11 14:17:42 -07:00
|
|
|
[tool.uv]
|
|
|
|
package = true
|
|
|
|
default-groups = []
|
2024-05-19 17:43:12 -06:00
|
|
|
|
2025-01-11 14:17:42 -07:00
|
|
|
[tool.setuptools]
|
|
|
|
packages = ["teufa"]
|