mirror of
https://github.com/DrewThomasson/ebook2audiobook.git
synced 2026-01-09 13:58:14 -05:00
39 lines
834 B
TOML
39 lines
834 B
TOML
[project]
|
|
name = "ebook2audiobook"
|
|
version = "2.0.0"
|
|
description = "Convert eBooks to audiobooks with chapters and metadata"
|
|
authors = [{ name = "Drew Thomasson" }]
|
|
dependencies = [
|
|
"beautifulsoup4",
|
|
"coqui-tts",
|
|
"cutlet",
|
|
"deep_translator",
|
|
"docker",
|
|
"ebooklib",
|
|
"gensim",
|
|
"gradio>=4.44",
|
|
"hangul-romanize",
|
|
"indic-nlp-library",
|
|
"iso-639",
|
|
"jieba",
|
|
"pydub",
|
|
"pypinyin",
|
|
"ray",
|
|
"transformers",
|
|
"translate",
|
|
"tqdm"
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10,<3.13"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/DrewThomasson/ebook2audiobook"
|
|
|
|
[project.scripts]
|
|
"ebook2audiobook" = "ebook2audiobook.app:main"
|