-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
85 lines (67 loc) · 2.18 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
82
83
84
85
import setuptools
from importlib.machinery import SourceFileLoader
version = SourceFileLoader(
'musdb.version', 'musdb/version.py'
).load_module()
with open('README.md', 'r') as fdesc:
long_description = fdesc.read()
if __name__ == "__main__":
setuptools.setup(
# Name of the project
name='musdb',
# Version
version=version.version,
# Description
description='Python parser for the SIGSEP MUSDB18 dataset',
url='https://github.com/sigsep/sigsep-mus-db',
# Your contact information
author='Fabian-Robert Stoeter',
author_email='[email protected]',
# License
license='MIT',
# Packages in this project
# find_packages() finds all these automatically for you
packages=setuptools.find_packages(),
long_description=long_description,
long_description_content_type='text/markdown',
# Dependencies, this installs the entire Python scientific
# computations stack
install_requires=[
'numpy>=1.7',
'stempeg>=0.2.3',
'pyaml',
'tqdm'
],
package_data={
'musdb': ['configs/mus.yaml'],
},
extras_require={ # Optional
'dev': ['check-manifest'],
'tests': ['pytest'],
'docs': [
'sphinx',
'sphinx_rtd_theme',
'recommonmark'
],
},
tests_require=[
'pytest'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Plugins',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis'
],
entry_points={
'console_scripts': [
'musdbconvert=musdb.tools:musdb_convert',
],
},
zip_safe=False,
)