Files
auditui/pyproject.toml
2026-01-19 14:41:09 +01:00

33 lines
580 B
TOML

[project]
name = "auditui"
version = "0.1.4"
description = "An Audible TUI client"
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = ["audible>=0.10.0", "httpx>=0.28.1", "textual>=6.7.1"]
[project.optional-dependencies]
dev = [
"coverage[toml]>=7.0",
"pytest>=7.0",
"pytest-asyncio>=0.23",
"httpx>=0.28.1",
]
[project.scripts]
auditui = "auditui.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["auditui"]
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.uv]
package = true