-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
70 lines (66 loc) · 1.78 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
from pathlib import Path
from setuptools import setup, find_packages
NAME = "DiffMST"
DESCRIPTION = "Mix style transfer with differentiable signal processing"
URL = "https://github.com/sai-soum/DiffMST.git"
EMAIL = "[email protected]"
AUTHOR = "Soumya Sai Vanka"
REQUIRES_PYTHON = ">=3.7.11"
VERSION = "0.0.1"
HERE = Path(__file__).parent
try:
with open(HERE / "README.md", encoding="utf-8") as f:
long_description = "\n" + f.read()
except FileNotFoundError:
long_description = DESCRIPTION
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=[
"mst",
],
install_requires=[
"auraloss==0.4.0",
"dasp-pytorch==0.0.1",
"librosa",
"matplotlib",
"numpy",
"pedalboard==0.8.7",
"pyloudnorm",
"pytorch_lightning[extra]==2.1.4",
"scipy==1.12.0",
"tensorboard",
"torch==2.2.0",
"torchaudio==2.2.0",
"torchvision==0.17.0",
"tqdm",
"wandb",
],
extras_require={
"asteroid": ["asteroid-filterbanks>=0.3.2"],
"tests": [
"pytest",
"musdb>=0.4.0",
"museval>=0.4.0",
"asteroid-filterbanks>=0.3.2",
"onnx",
"tqdm",
],
"stempeg": ["stempeg"],
"evaluation": ["musdb>=0.4.0", "museval>=0.4.0"],
},
# entry_points={"console_scripts": ["umx=openunmix.cli:separate"]},
# packages=find_packages(),
include_package_data=True,
classifiers=[
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Scientific/Engineering",
],
)