-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
executable file
·55 lines (48 loc) · 1.47 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
#!/usr/bin/env python
import setuptools
if __name__ == "__main__":
setuptools.setup(
name='mdct',
version='0.4',
description='A fast MDCT implementation using SciPy and FFTs',
author='Nils Werner',
author_email='[email protected]',
url='http://mdct.readthedocs.io/',
license='MIT',
packages=setuptools.find_packages(),
install_requires=[
'numpy>=1.6',
'scipy>=0.13.0',
'stft>=0.5.2',
],
extras_require={
'tests': [
'pytest',
'pytest-cov',
'pytest-pycodestyle',
'tox',
],
'docs': [
'sphinx<=1.3',
'sphinx_rtd_theme',
'numpydoc',
],
},
tests_require=[
'pytest',
'pytest-cov',
'pytest-pycodestyle',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis'
],
zip_safe=True,
include_package_data=True,
)