mirror of
https://github.com/DrewThomasson/ebook2audiobook.git
synced 2026-01-08 05:23:55 -05:00
68 lines
1.3 KiB
TOML
68 lines
1.3 KiB
TOML
[build-system]
|
|
name = "ebook2audiobook"
|
|
requires = ["setuptools >= 64"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.poetry]
|
|
name = "ebook2audiobook"
|
|
version = "25.10.30"
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {file = "VERSION.txt"}
|
|
|
|
[project]
|
|
name = "ebook2audiobook"
|
|
description = "Convert eBooks to audiobooks with chapters and metadata"
|
|
authors = [
|
|
{ name = "Drew Thomasson" }
|
|
]
|
|
dependencies = [
|
|
"packaging",
|
|
"tqdm",
|
|
"torchvggish",
|
|
"num2words @ git+https://github.com/savoirfairelinux/num2words.git",
|
|
"regex",
|
|
"docker",
|
|
"ebooklib",
|
|
"fastapi",
|
|
"hf_xet",
|
|
"beautifulsoup4",
|
|
"nagisa",
|
|
"pymupdf",
|
|
"pymupdf-layout",
|
|
"pytesseract",
|
|
"unidic",
|
|
"hangul-romanize",
|
|
"indic-nlp-library",
|
|
"iso639-lang",
|
|
"jieba",
|
|
"pycantonese",
|
|
"soynlp",
|
|
"pypinyin",
|
|
"pythainlp",
|
|
"mutagen",
|
|
"PyOpenGL",
|
|
"phonemizer-fork",
|
|
"pydub",
|
|
"demucs",
|
|
"unidecode",
|
|
"langdetect",
|
|
"stanza==1.10.1",
|
|
"pyannote-audio<=3.4.0",
|
|
"argostranslate<=1.10.0",
|
|
"gradio==5.49.1",
|
|
"torch<=2.7.1",
|
|
"torchaudio<=2.7.1",
|
|
"coqui-tts[languages]==0.27.2"
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">3.9,<3.13"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
scripts = { "ebook2audiobook" = "app:main" }
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/DrewThomasson/ebook2audiobook" |