forked from suno-ai/bark
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (40 loc) · 911 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "SpeechCraft"
version = "0.0.2"
description = "Create natural sounding audio from text, clone voices and use them. Convert voice to voice. Bark model."
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name = "SocAIty" }
]
# Apache 2.0
license = {file = "LICENSE"}
dependencies = [
"media-toolkit[AudioFile]>=0.0.3",
"encodec",
"fairseq",
"boto3",
"funcy",
"huggingface-hub>=0.14.1",
"numpy",
"scipy",
"tokenizers",
"torch",
"torchaudio",
"tqdm",
"transformers"
]
[project.urls]
source = "https://github.com/SocAIty/SpeechCraft"
[project.optional-dependencies]
full = [
"fastapi",
"fast-task-api>=0.0.3"
]
[tool.setuptools.package-data]
speakers = ["assets/prompts/*.npz", "assets/prompts/v2/*.npz"]
[tool.black]
line-length = 100