-
Notifications
You must be signed in to change notification settings - Fork 117
/
setup.py
56 lines (54 loc) · 1.51 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import find_packages
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="descript-audio-codec",
version="1.0.0",
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Topic :: Artistic Software",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Editors",
"Topic :: Software Development :: Libraries",
],
description="A high-quality general neural audio codec.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Prem Seetharaman, Rithesh Kumar",
author_email="[email protected]",
url="https://github.com/descriptinc/descript-audio-codec",
license="MIT",
packages=find_packages(),
keywords=["audio", "compression", "machine learning"],
install_requires=[
"argbind>=0.3.7",
"descript-audiotools>=0.7.2",
"einops",
"numpy",
"torch",
"torchaudio",
"tqdm",
],
extras_require={
"dev": [
"pytest",
"pytest-cov",
"pynvml",
"psutil",
"pandas",
"onnx",
"onnx-simplifier",
"seaborn",
"jupyterlab",
"pandas",
"watchdog",
"pesq",
"tabulate",
"encodec",
],
},
)