-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.08 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dramabox-pipeline"
version = "0.2.0"
description = "End-to-end voice prompt generation and audio synthesis using the DramaBox TTS model and structured voice taxonomy sampling."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
dependencies = [
"transformers>=4.45.0",
"torch>=2.4.0",
"torchaudio>=2.4.0",
"nltk>=3.8",
"sentencepiece>=0.1.99",
"soundfile>=0.12.0",
]
[project.optional-dependencies]
tts = [
"accelerate>=0.25.0",
"bitsandbytes>=0.45.0",
"einops>=0.7.0",
"safetensors>=0.4.0",
"peft>=0.7.0",
"huggingface_hub>=0.20.0",
"av>=12.0.0",
]
refinement = [
"resemble-enhance>=0.0.1",
"chatterbox-tts>=0.1.0",
]
scoring = [
"nemo_toolkit[asr]>=2.0.0",
]
all = [
"dramabox-pipeline[tts,refinement,scoring]",
]
[project.scripts]
dramabox = "dramabox.cli:main"
[tool.setuptools.packages.find]
include = ["dramabox*"]
[tool.setuptools.package-data]
"*" = ["*.json", "*.html", "*.txt"]