26 lines
509 B
TOML
26 lines
509 B
TOML
[tool.poetry]
|
|
name = "bookbuild"
|
|
version = "0.1.0"
|
|
description = "Build script for my book projects"
|
|
authors = ["Tobias Radloff <mail@tobias-radloff.de>"]
|
|
license = "GPLv3"
|
|
packages = [
|
|
{ include = "bookbuild", from = "src" }
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
pypdf = "^6.1.2"
|
|
PyYAML = "^6.0.3"
|
|
typer = "^0.19.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
[tool.poetry.scripts]
|
|
bookbuild = 'bookbuild.main:app'
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|