-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
37 lines (26 loc) · 931 Bytes
/
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
"""setup script"""
from setuptools import setup
if __name__ == "__main__":
setup(
name='tqwt_tools',
version='0.0.1',
description='Computation of a Tunable-Q Wavelet Transform and a resonance-based signal decomposition',
author='Jonas Hajek-Lellmann',
author_email='[email protected]',
python_requires='>=3.7',
classifiers=[
"Programming Language :: Python :: 3.7",
"Development Status :: 3 - Alpha",
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Science/Research',
'Indended Audience :: Developers'
'Environment :: Console',
'Topic :: Scientific/Engineering :: Information Analysis',
],
install_requires=[
'scipy',
'numpy',
'sortedcontainers',
'typeguard',
],
)