-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (81 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
90 lines (81 loc) · 2.15 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kugelaudio-open"
version = "0.1.0"
authors = [
{ name = "Kajo Kratzenstein", email = "kajo@kugelaudio.com" },
]
maintainers = [
{ name = "Kajo Kratzenstein", email = "kajo@kugelaudio.com" },
]
description = "Open-source speech synthesis with AR + diffusion architecture"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Multimedia :: Sound/Audio :: Speech",
]
keywords = ["tts", "speech-synthesis", "diffusion", "transformer", "audio"]
dependencies = [
"torch>=2.0.0",
"transformers>=4.40.0",
"accelerate>=1.0.0",
"diffusers>=0.25.0",
"numpy>=1.24.0",
"scipy>=1.10.0",
"librosa>=0.10.0",
"soundfile>=0.12.0",
"tqdm>=4.65.0",
"audioseal>=0.1.0",
"gradio>=6.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
server = [
"fastapi>=0.100.0",
"uvicorn[standard]>=0.22.0",
"websockets>=11.0.0",
]
ui = [
"gradio>=4.0.0",
]
all = [
"gradio>=4.0.0",
"fastapi>=0.100.0",
"uvicorn[standard]>=0.22.0",
]
[project.urls]
Homepage = "https://kugelaudio.com"
Documentation = "https://docs.kugelaudio.com"
Repository = "https://github.com/kugelaudio/kugelaudio"
API = "https://api.kugelaudio.com"
[project.scripts]
kugelaudio = "kugelaudio_open.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
kugelaudio_open = ["configs/*.json"]
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py312"]
[tool.ruff]
line-length = 100
target-version = "py310"
select = ["E", "F", "W", "I", "UP"]
ignore = ["E501"]