-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 690 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 690 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='ChimeraNet',
version='2.0',
description='An implementation of music separation model by Luo et.al.',
author='',
author_email='',
url='https://github.com/arity-r/ChimeraNet',
packages=['chimeranet', 'chimeranet.datasets'],
python_requires='~=3.6',
# TODO: specify version
install_requires=[
'h5py',
'keras',
'scikit-learn',
'librosa',
'pysoundfile',
],
scripts=[
'scripts/chimeranet-prepare.py',
'scripts/chimeranet-show-data.py',
'scripts/chimeranet-train.py',
'scripts/chimeranet-separate.py',
],
)