https://github.com/regeirk/pycwt
Revision baecef470a050685fa8b0eeb9ebbb3e9e6f183b4 authored by Nabil Freij on 10 September 2013, 10:05:38 UTC, committed by Nabil Freij on 10 September 2013, 10:05:38 UTC
Now only need to write the python code to output the same style of plot for
comparison.
1 parent 9a25b11
Raw File
Tip revision: baecef470a050685fa8b0eeb9ebbb3e9e6f183b4 authored by Nabil Freij on 10 September 2013, 10:05:38 UTC
Added the data and IDL outputed wavelet graphs for a test sample.
Tip revision: baecef4
setup.py
#!/usr/bin/env python2

from distutils.core import setup
import setuptools

setup(name='kpywavelet',
      version='0.4',
      description='Continuous wavelet transform module for Python.',
      author='Sebastian',
      author_email='sebastian@nublia.com',
      url='https://github.com/regeirk/kPyWavelet',
      packages=['kpywavelet'],
     )
back to top