forked from acids-ircam/RAVE
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 808 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (29 loc) · 808 Bytes
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
from setuptools import setup
setup(
name="RAVE",
version="1.0",
install_requires=[
'aeiou',
'accelerate',
'tqdm==4.62.3',
'effortless-config==0.7.0',
'einops==0.4.0',
'librosa',
'matplotlib==3.5.1',
'numpy',
#'pytorch-lightning',
'prefigure>=0.0.6',
'protobuf==3.20.*',
'scikit_learn==1.0.2',
'scipy==1.7.3',
'soundfile==0.10.3.post1',
'termcolor==1.1.0',
'torch',
'torchaudio',
'tensorboard==2.8.0',
'GPUtil==1.4.0',
'wandb==0.12.7',
'cached_conv @ git+https://github.com/caillonantoine/cached_conv.git#egg=cached_conv',
'udls @ git+https://github.com/caillonantoine/UDLS.git#egg=udls'],
# ...
)