-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (56 loc) · 2.03 KB
/
setup.py
File metadata and controls
61 lines (56 loc) · 2.03 KB
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
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="mail@faroit.com",
# 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,<3.0", "stempeg>=0.2.4", "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,
)