-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
executable file
·65 lines (54 loc) · 1.69 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='stft',
# Version
version='0.5.2',
# Description
description='Short Time Fourier transform for NumPy.',
# Your contact information
author='Nils Werner',
author_email='[email protected]',
# License
license='MIT',
# Packages in this project
# find_packages() finds all these automatically for you
packages=setuptools.find_packages(exclude=['tests']),
# Dependencies, this installs the entire Python scientific
# computations stack
install_requires=[
'numpy>=1.7',
'scipy>=0.9',
],
extras_require={
'docs': [
'sphinx',
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
],
'tests': [
'pytest',
'pytest-cov',
'pytest-pycodestyle',
'tox',
],
},
tests_require=[
'pytest',
'pytest-cov',
'pytest-pycodestyle',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis'
],
zip_safe=True,
)