ttettheu commited on
Commit
5b6e1b0
·
verified ·
1 Parent(s): 92039c5

Create pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +62 -0
pyproject.toml ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "rvc-beta"
3
+ version = "0.1.0"
4
+ description = ""
5
+ authors = ["lj1995"]
6
+ license = "MIT"
7
+
8
+ [tool.poetry.dependencies]
9
+ python = "^3.8"
10
+ torch = "^2.0.0"
11
+ torchaudio = "^2.0.1"
12
+ Cython = "^0.29.34"
13
+ gradio = "^3.34.0"
14
+ future = "^0.18.3"
15
+ pydub = "^0.25.1"
16
+ soundfile = "^0.12.1"
17
+ ffmpeg-python = "^0.2.0"
18
+ tensorboardX = "^2.6"
19
+ functorch = "^2.0.0"
20
+ fairseq = "^0.12.2"
21
+ faiss-cpu = "^1.7.2"
22
+ Jinja2 = "^3.1.2"
23
+ json5 = "^0.9.11"
24
+ librosa = "0.9.2"
25
+ llvmlite = "0.39.0"
26
+ Markdown = "^3.4.3"
27
+ matplotlib = "^3.7.1"
28
+ matplotlib-inline = "^0.1.6"
29
+ numba = "0.56.4"
30
+ numpy = "1.23.5"
31
+ scipy = "1.9.3"
32
+ praat-parselmouth = "^0.4.3"
33
+ Pillow = "9.3.0"
34
+ pyworld = "^0.3.2"
35
+ resampy = "^0.4.2"
36
+ scikit-learn = "^1.2.2"
37
+ starlette = "^0.27.0"
38
+ tensorboard = "^2.12.1"
39
+ tensorboard-data-server = "^0.7.0"
40
+ tensorboard-plugin-wit = "^1.8.1"
41
+ torchgen = "^0.0.1"
42
+ tqdm = "^4.65.0"
43
+ tornado = "^6.3"
44
+ Werkzeug = "^2.2.3"
45
+ uc-micro-py = "^1.0.1"
46
+ sympy = "^1.11.1"
47
+ tabulate = "^0.9.0"
48
+ PyYAML = "^6.0"
49
+ pyasn1 = "^0.4.8"
50
+ pyasn1-modules = "^0.2.8"
51
+ fsspec = "^2023.3.0"
52
+ absl-py = "^1.4.0"
53
+ audioread = "^3.0.0"
54
+ uvicorn = "^0.21.1"
55
+ colorama = "^0.4.6"
56
+ torchcrepe = "0.0.20"
57
+
58
+ [tool.poetry.dev-dependencies]
59
+
60
+ [build-system]
61
+ requires = ["poetry-core>=1.0.0"]
62
+ build-backend = "poetry.core.masonry.api"