kevinwang676 commited on
Commit
7b3ab4a
·
verified ·
1 Parent(s): 56c1028

Upload pyproject (5).toml

Browse files
Files changed (1) hide show
  1. pyproject (5).toml +52 -0
pyproject (5).toml ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "fish-speech"
3
+ version = "0.1.0"
4
+ authors = [
5
+ {name = "Lengyue", email = "[email protected]"},
6
+ ]
7
+ description = "Fish Speech"
8
+ readme = "README.md"
9
+ requires-python = ">=3.10"
10
+ keywords = ["TTS", "Speech"]
11
+ license = {text = "BSD-3-Clause"}
12
+ classifiers = [
13
+ "Programming Language :: Python :: 3",
14
+ ]
15
+ dependencies = [
16
+ "transformers>=4.35.2",
17
+ "datasets>=2.14.5",
18
+ "lightning>=2.1.0",
19
+ "hydra-core>=1.3.2",
20
+ "tensorboard>=2.14.1",
21
+ "natsort>=8.4.0",
22
+ "einops>=0.7.0",
23
+ "librosa>=0.10.1",
24
+ "rich>=13.5.3",
25
+ "gradio>=4.0.0",
26
+ "wandb>=0.15.11",
27
+ "grpcio>=1.58.0",
28
+ "kui>=1.6.0",
29
+ "zibai-server>=0.9.0",
30
+ "loguru>=0.6.0",
31
+ "loralib>=0.1.2",
32
+ "natsort>=8.4.0",
33
+ "pyrootutils>=1.0.4",
34
+ "vector_quantize_pytorch>=1.14.7",
35
+ "samplerate>=0.2.1",
36
+ "resampy>=0.4.3",
37
+ "spaces>=0.26.1",
38
+ "einx[torch]==0.2.2"
39
+ ]
40
+
41
+ [project.optional-dependencies]
42
+ asr = [
43
+ "openai-whisper",
44
+ "modelscope"
45
+ ]
46
+
47
+ [build-system]
48
+ requires = ["setuptools", "setuptools-scm"]
49
+ build-backend = "setuptools.build_meta"
50
+
51
+ [tool.setuptools]
52
+ packages = ["fish_speech"]