forked from DrewThomasson/ebook2audiobook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (60 loc) · 1.26 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (60 loc) · 1.26 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
[build-system]
name = "ebook2audiobook"
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "ebook2audiobook"
version = "0.0.0"
[tool.setuptools.dynamic]
version = {file = "VERSION.txt"}
[project]
name = "ebook2audiobook"
description = "Convert eBooks to audiobooks with chapters and metadata"
authors = [
{ name = "Drew Thomasson" }
]
dependencies = [
"argostranslate",
"beautifulsoup4",
"cutlet",
"deep_translator",
"demucs",
"docker",
"ebooklib",
"fastapi",
"fugashi",
"gradio>=5.42.0",
"hangul-romanize",
"indic-nlp-library",
"iso-639",
"jieba",
"soynlp",
"pythainlp",
"pydub",
"pyannote-audio",
"mutagen",
"nvidia-ml-py",
"PyOpenGL",
"pypinyin",
"ray",
"regex",
"translate",
"tqdm",
"unidic",
"pymupdf4llm",
"sudachipy",
"sudachidict_core",
"transformers==4.51.3",
"coqui-tts[languages]==0.26.0",
"torchvggish"
]
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"