-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.05 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
"""
This is the setup module for the HSTransform package. (Beta test)
S-transform with Hyperbolic Window
Combines the best properties of the Short-time Fourier Transform
and the Wavelet Transform.
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='HSTransform',
version='0.1.1',
url='https://github.com/nvlinhvn/HSTransform',
packages=find_packages(),
license='MIT',
author='Linh V Nguyen',
author_email='[email protected]',
description='A Package to Compute S-transform with Hyperbolic Window',
python_requires='>=3.10',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'numpy>=1.21.2',
'scipy>=1.7.1',
'pandas>=1.3.3',
'pytest>=6.2.5'
],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
],
test_suite='tests'
)