-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 761 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 761 Bytes
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
[project]
name = "fasttts"
version = "0.1.0"
description = "A Text-to-Speech API server supporting multiple TTS engines"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"python-dotenv>=1.0.0",
"fastapi[all]>=0.128.0",
"aiofiles>=24.1.0",
"pydub>=0.25.0",
"websockets>=12.0",
"pocket-tts>=1.0.1",
"sounddevice>=0.5.3",
"numpy>=2.2.6",
# "google-genai>=1.60.0",
# "rich>=13.0.0",
"pyaudio>=0.2.14",
"resampy>=0.4.3",
"stream2sentence>=0.3.1",
]
[project.scripts]
fasttts = "fasttts.app:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
fasttts = ["py.typed"]