-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 751 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import find_packages, setup
setup(
name='stable-codec',
version='0.1.2',
author='Stability AI',
author_email='julian.parker@stability.ai',
description='Stable Codec: A series of codec models for speech and audio',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/Stability-AI/stable-codec/',
packages=find_packages(),
python_requires='>=3.9',
install_requires=['packaging',
'wheel',
'torch==2.4',
'torchaudio==2.4',
'stable-audio-tools==0.0.19',
'pytorch-lightning==2.1',
'prefigure==0.0.9']
)