forked from DrewThomasson/ebook2audiobook
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (64 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
68 lines (64 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
name = "ebook2audiobook"
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "ebook2audiobook"
version = {file = "VERSION.txt"}
[tool.setuptools.dynamic]
version = {file = "VERSION.txt"}
[project]
name = "ebook2audiobook"
description = "Convert eBooks to audiobooks with chapters and metadata"
authors = [
{ name = "Drew Thomasson" }
]
dependencies = [
"cryptography",
"tqdm",
"torchvggish",
"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",
"unidecode",
"langdetect",
"phonemizer",
"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",
"transformers==5.0.0",
"coqui-tts[languages]==0.27.5"
]
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"