mirror of
https://github.com/DrewThomasson/ebook2audiobook.git
synced 2026-01-10 06:18:02 -05:00
40 lines
735 B
TOML
40 lines
735 B
TOML
[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",
|
|
"camel-tools",
|
|
"coqui-tts",
|
|
"cutlet",
|
|
"docker",
|
|
"ebooklib",
|
|
"gensim",
|
|
"gradio>=4.44.0",
|
|
"jieba",
|
|
"mecab",
|
|
"mecab-python3",
|
|
"nltk>=3.8.2",
|
|
"pydub",
|
|
"pypinyin",
|
|
"sentencepiece",
|
|
"translate",
|
|
"tqdm",
|
|
"unidic",
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10,<3.12"
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/DrewThomasson/ebook2audiobook"
|
|
|