audiblez/pyproject.toml

37 lines
999 B
TOML
Raw Normal View History

2025-01-14 16:29:53 +01:00
[project]
name = "audiblez"
2025-02-03 12:30:11 +01:00
version = "0.3.5"
2025-01-15 15:50:17 +01:00
description = "Generate audiobooks from e-books (epub to wav/m4b)"
2025-01-14 16:29:53 +01:00
authors = [
2025-01-31 20:06:11 +01:00
{ name = "Claudio Santini", email = "hireclaudio@gmail.com" }
2025-01-14 16:29:53 +01:00
]
readme = "README.md"
2025-01-29 11:11:54 +01:00
requires-python = ">=3.9,<3.13"
2025-01-14 16:29:53 +01:00
dependencies = [
2025-01-29 11:11:54 +01:00
"ebooklib (>=0.18,<0.19)",
"soundfile (>=0.13.1,<0.14.0)",
2025-01-15 19:12:48 +01:00
"pick (>=2.4.0,<3.0.0)",
2025-01-29 11:11:54 +01:00
"bs4 (>=0.0.2,<0.0.3)",
"pydub (>=0.25.1,<0.26.0)",
2025-02-01 13:59:31 +01:00
"spacy (>=3.8.3,<4.0.0)",
2025-02-07 13:38:13 +01:00
"kokoro (>=0.7.9,<0.8.0)",
2025-02-07 16:04:32 +01:00
"misaki[zh] (>=0.7.10,<0.8.0)",
"wxpython (>=4.2.2,<5.0.0)"
2025-01-14 16:29:53 +01:00
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
2025-01-14 22:57:31 +01:00
[project.urls]
Homepage = "https://claudio.uk/posts/epub-to-audiobook.html"
Documentation = "https://github.com/santinic/audiblez"
Repository = "https://github.com/santinic/audiblez"
2025-01-14 23:54:02 +01:00
Issues = "https://github.com/santinic/audiblez/issues"
2025-01-14 22:57:31 +01:00
[project.scripts]
2025-02-07 16:04:32 +01:00
audiblez = "audiblez.cli:cli_main"
2025-01-29 11:11:54 +01:00
[tool.poetry.group.dev.dependencies]
deptry = "^0.23.0"