-
Notifications
You must be signed in to change notification settings - Fork 105
/
setup.py
35 lines (30 loc) · 1.12 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
AUTHORS = ('Sebastian Krieger, Nabil Freij, Alexey Brazhe, '
'Christopher Torrence, Gilbert P. Compo and contributors')
setup(
name='pycwt',
version='0.3.0a22',
author=AUTHORS,
author_email='[email protected]',
description=('Continuous wavelet transform module for Python.'),
license='BSD',
url='https://github.com/regeirk/pycwt',
packages=['pycwt'],
install_requires=['numpy', 'scipy', 'matplotlib', 'tqdm'],
long_description=read('README.rst'),
keywords=['wavelet', 'spectral analysis', 'signal processing',
'data science', 'timeseries'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Intended Audience :: Science/Research'
],
)