-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
97 lines (91 loc) · 2.13 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# General pyproject.toml options:
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
#
# setuptools-specific options:
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "voicebox-tts"
authors = [
{ name = "Austin Bowen", email = "austin.bowen.314@gmail.com" },
]
description = "Python text-to-speech library with built-in voice effects and support for multiple TTS engines."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dynamic = ["version"]
dependencies = [
"cachetools",
"nltk",
"numpy",
"pedalboard",
"scipy",
"sounddevice",
]
[project.optional-dependencies]
all = [
"voicebox-tts[dev]",
"voicebox-tts[docs]",
"voicebox-tts[test]",
"voicebox-tts[amazon-polly]",
"voicebox-tts[elevenlabs]",
"voicebox-tts[google-cloud-tts]",
"voicebox-tts[gtts]",
"voicebox-tts[pyttsx3]",
]
dev = [
"build",
"invoke",
"twine",
]
docs = [
"myst-parser",
"sphinx",
"sphinx-rtd-theme",
]
test = [
"coverage",
"parameterized",
"pytest",
]
amazon-polly = [
"boto3",
"boto3-stubs",
"boto3-stubs[polly]",
]
elevenlabs = [
"elevenlabs",
"pydub",
]
google-cloud-tts = [
"google-cloud-texttospeech",
]
gtts = [
"gTTS",
"pydub",
]
pyttsx3 = [
"pyttsx3",
]
[project.urls]
Homepage = "https://github.com/austin-bowen/voicebox"
Issues = "https://github.com/austin-bowen/voicebox/issues"
[tool.setuptools.dynamic]
version = { attr = "voicebox.version.__version__" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["voicebox*"]