https://github.com/regeirk/pycwt
Revision d53dbe43deaf0c9d3aa54ae34f198386ef62e903 authored by Sebastian Krieger on 13 March 2023, 13:05:57 UTC, committed by GitHub on 13 March 2023, 13:05:57 UTC
2 parent s b8824c5 + e809412
Raw File
Tip revision: d53dbe43deaf0c9d3aa54ae34f198386ef62e903 authored by Sebastian Krieger on 13 March 2023, 13:05:57 UTC
Merge pull request #43 from Joscelinrocha/master
Tip revision: d53dbe4
setup.py
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='sebastian@nublia.com',
    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'
    ],
)
back to top