22 lines
495 B
TOML
22 lines
495 B
TOML
|
|
[project]
|
||
|
|
name = "diora-tui"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Lokaler EPUB-Reader als Vorstufe eines diora-TUI-Clients; synct später Fortschritt über die diora-API."
|
||
|
|
requires-python = ">=3.9"
|
||
|
|
dependencies = [
|
||
|
|
"textual>=0.60",
|
||
|
|
"ebooklib>=0.18",
|
||
|
|
"beautifulsoup4>=4.12",
|
||
|
|
"platformdirs>=4.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
diora-tui = "diora_tui.app:main"
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[tool.hatch.build.targets.wheel]
|
||
|
|
packages = ["diora_tui"]
|