generated from sigsep/open-unmix-pytorch
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
73 lines (70 loc) · 1.71 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
from setuptools import setup, find_packages
import os
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="xumx-slicq-v2",
version="1.0.0a2",
author="Sevag Hanssian",
author_email="[email protected]",
url="https://github.com/sevagh/xumx-sliCQ-V2",
description="V2 of my original sliCQT adaptation of Open-Unmix",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
python_requires=">=3.8",
install_requires=[
"torch>=2.0.0",
"torchaudio>=2.0.0",
"numpy",
"tqdm",
"requests",
"scipy",
],
extras_require={
"onnxruntime-cuda": [
"onnx",
"onnxruntime-gpu",
"tensorrt",
],
"onnxruntime-cpu": [
"onnx",
"onnxruntime",
],
"musdb": [
"musdb",
"museval",
],
"tests": [
"pytest",
],
"devel": [
"tensorboard",
"torchinfo",
"scikit-learn",
"auraloss",
"optuna",
"optuna-dashboard",
"matplotlib",
"musdb",
"museval",
"pytest",
],
"demixui": [
"kivy",
"kivymd",
"kivy-garden",
"onnxruntime",
"onnx",
"matplotlib",
],
},
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)