-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 715 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 715 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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='SoundCodec',
version='1.7',
packages=find_packages(),
install_requires=requirements,
extras_require={
'all': [
'funasr',
's3tokenizer',
'bigcodec',
'encodec',
'descript-audio-codec',
'funcodec @ git+https://github.com/voidful/FunCodec.git',
'AudioDec @ git+https://github.com/voidful/AudioDec.git',
'wavtokenizer @ git+https://github.com/voidful/WavTokenizer.git',
'unicodec @ git+https://github.com/mesolitica/UniCodec-fix'
]
}
)