-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 788 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (27 loc) · 788 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name='audiocodec-hub',
version='1.2',
packages=find_packages(),
author="Kai-Wei Chang",
author_email="kaiwei.chang.tw@gmail.com",
description="AudioCodec-Hub is a Python library for encoding and decoding audio data, supporting various neural audio codec models.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'GitPython',
'librosa',
'numpy',
'PyYAML',
'scikit-learn',
'soundfile',
'tqdm',
'transformers==4.33.2',
'requests',
'descript-audio-codec==1.0.0',
'torch',
'torchaudio'
],
)