-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
39 lines (38 loc) · 954 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name='audio-diffusion',
version='1.0.0',
url='https://github.com/zqevans/audio-diffusion.git',
author='Zach Evans',
packages=find_packages(),
install_requires=[
'a-transformers',
'accelerate',
'aeiou',
'archisound',
'audio-diffusion-pytorch',
'audio-encoders-pytorch',
'audio-metadata',
'auraloss',
'einops',
'ema-pytorch',
'encodec',
'k-diffusion',
'pandas',
'pedalboard',
'perceiver-pytorch',
'prefigure',
'pyloudnorm',
'pytorch_lightning',
'PyWavelets',
'quantizer-pytorch',
'scipy',
'torch',
'torchaudio',
'tqdm',
'transformers',
'vector-quantize-pytorch',
'wandb',
'cached_conv @ git+https://github.com/caillonantoine/cached_conv.git',
],
)