tt/pyproject.toml
2025-04-30 22:26:37 -05:00

30 lines
514 B
TOML

[project]
name = "tt"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"httpx>=0.28.1",
"lxml>=5.3.0",
"peewee>=3.17.8",
"textual>=1.0.0",
"tomlkit>=0.13.2",
"typer>=0.15.1",
"xdg-base-dirs>=6.0.2",
]
[project.scripts]
tt = "tt.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest-asyncio>=0.25.1",
"pytest>=8.3.4",
"textual-dev>=1.7.0",
]