forked from nussl/nussl
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
50 lines (45 loc) · 1.72 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
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('extra_requirements.txt') as f:
extra_requirements = f.read().splitlines()
setup(
name='nussl',
version='1.1.3',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'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 flexible sound source separation library.',
long_description=long_description,
long_description_content_type='text/markdown',
author='E. Manilow, P. Seetharaman, F. Pishdadian, N. Shelly, A. Bugler, B. Pardo',
author_email='[email protected]',
maintainer='E. Manilow, P. Seetharaman, F. Pishdadian, N. Shelly, A. Bugler, B. Pardo',
maintainer_email='[email protected]',
url='https://github.com/interactiveaudiolab/nussl',
license='MIT',
packages=find_packages(),
package_data={'': ['core/templates/multitrack.html']},
keywords=['audio', 'source', 'separation', 'music', 'sound', 'source separation'],
install_requires=requirements,
extras_require={
'melodia': [
'vamp'
],
'extras': extra_requirements,
}
)