-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (35 loc) · 1.44 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='tifresi',
version='0.1.5',
description='Time Frequency Spectrogram Inversion',
url='https://github.com/andimarafioti/tifresi',
author='Andrés Marafioti, Nathanael Perraudin, Nicki Hollighaus',
author_email='nathanael.perraudin@sdsc.ethz.ch',
license='MIT',
packages=setuptools.find_packages(),
zip_safe=False,
long_description=long_description,
long_description_content_type="text/markdown",
extras_require={'testing': ['flake8', 'pytest', 'jupyterlab', 'twine', 'setuptools', 'wheel']},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers', 'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux', 'Programming Language :: C',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering'
],
install_requires=[
'cython', 'ltfatpy', 'numpy', 'numba', 'librosa', 'matplotlib'
],
python_requires='>=3.6',
)