-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
65 lines (54 loc) · 1.74 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
import setuptools
if __name__ == "__main__":
setuptools.setup(
# Name of the project
name='bsseval',
# Version
version="0.1.0",
# Description
description='Evaluation tools for the audio source separation',
url='https://github.com/sigsep/bsseval',
# 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(),
# Dependencies, this installs the entire Python scientific
# computations stack
install_requires=[
'numpy',
'scipy',
],
extras_require={
'tests': [
'pytest',
'pytest-pep8'
],
'docs': [
'sphinx',
'sphinx_rtd_theme',
'numpydoc',
]
},
tests_require=[
'pytest',
'pytest-pep8'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Plugins',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis'
],
zip_safe=False,
)