2025-01-04 00:01:40 +00:00
|
|
|
[project]
|
|
|
|
name = "tt"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Add your description here"
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.10"
|
2025-01-04 08:56:09 +00:00
|
|
|
dependencies = [
|
2025-01-04 09:09:46 +00:00
|
|
|
"httpx>=0.28.1",
|
|
|
|
"lxml>=5.3.0",
|
|
|
|
"peewee>=3.17.8",
|
|
|
|
"textual>=1.0.0",
|
|
|
|
"typer>=0.15.1",
|
2025-01-04 08:56:09 +00:00
|
|
|
]
|
2025-01-04 00:01:40 +00:00
|
|
|
|
|
|
|
[project.scripts]
|
2025-01-04 09:09:46 +00:00
|
|
|
tt = "tt.cli:app"
|
2025-01-04 00:01:40 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
2025-01-05 09:02:41 +00:00
|
|
|
|
|
|
|
[tool.uv]
|
|
|
|
dev-dependencies = [
|
2025-01-06 02:21:27 +00:00
|
|
|
"pytest-asyncio>=0.25.1",
|
|
|
|
"pytest>=8.3.4",
|
2025-01-05 09:02:41 +00:00
|
|
|
"textual-dev>=1.7.0",
|
|
|
|
]
|