-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
81 lines (79 loc) · 2.16 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
from setuptools import find_packages
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="descript-audiotools",
version="0.7.4",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"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="Utilities for handling audio.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Prem Seetharaman, Lucas Gestin",
author_email="prem@descript.com",
license="MIT",
packages=find_packages(),
package_data={
"": [
"core/templates/headers.html",
"core/templates/widget.html",
"core/templates/pandoc.css",
]
},
install_requires=[
"argbind",
"numpy",
"soundfile",
"pyloudnorm",
"importlib-resources",
"scipy",
"torch",
"julius",
"torchaudio",
"ffmpy",
"ipython",
"rich",
"matplotlib",
"librosa",
"pystoi",
"torch_stoi",
"flatten-dict",
"markdown2",
"randomname",
# Borrowing pin from tensorboard source: https://github.com/tensorflow/tensorboard/commit/e795312f70537cb9c9ab4bd2a08a03e77f0356a5.
"protobuf >= 3.19.6, != 4.24.0, < 5.0.0",
"tensorboard",
"tqdm",
],
extras_require={
"tests": [
"pytest",
"pytest-cov",
"line_profiler",
"pesq",
"gradio==3.32.0",
"transformers>=4.23.1",
],
"docs": [
"sphinx",
"sphinx-rtd-theme",
"myst-parser",
"myst-nb",
"sphinx-multiversion",
],
"whisper": [
"transformers>=4.23.1",
],
},
)