ebook2audiobook / pyproject.toml
drewThomasson's picture
v2.0 will add the voices folder in a sec
fc032f5
raw
history blame contribute delete
940 Bytes
[build-system]
name = "ebook2audiobook"
version = "2.0.0"
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"
[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",
]
scripts = { "ebook2audiobook" = "app:main" }
[project.urls]
"Homepage" = "https://github.com/DrewThomasson/ebook2audiobook"