-
-
Notifications
You must be signed in to change notification settings - Fork 625
/
Copy pathpyproject.toml
59 lines (55 loc) · 1.12 KB
/
pyproject.toml
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
[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 = [
"beautifulsoup4",
"cutlet",
"deep_translator",
"demucs",
"docker",
"ebooklib",
"fastapi",
"ffmpeg-python",
"gensim",
"gradio",
"hangul-romanize",
"indic-nlp-library",
"iso-639",
"jieba",
"m4b-util",
"mecab",
"mecab-python3",
"pydub",
"pypinyin",
"ray",
"regex",
"sentencepiece",
"torchvggish",
"transformers",
"translate",
"tqdm",
"unidic",
"coqui-tts==0.25.3
]
readme = "README.md"
requires-python = ">3.11,<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"