[tool.poetry] name = "bookbuild" description = "Build script for my book projects" version = "0.2.1" license = "GPL-3.0-or-later" readme = "README.md" authors = ["Tobias Radloff "] packages = [{ include = "bookbuild", from = "src" }] [tool.poetry.urls] repository = "https://git.unterdemradar.de/tobias/bookbuild" [tool.poetry.dependencies] python = "^3.10" pypdf = "^6.1.2" PyYAML = "^6.0.3" typer = "^0.19.2" [tool.poetry.scripts] bookbuild = 'bookbuild.main:app' [build-system] requires = ["poetry-core>=1.0.8"] build-backend = "poetry.core.masonry.api"