File: release_details.py

package info (click to toggle)
pywavelets 0.2.0-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,584 kB
  • sloc: ansic: 3,357; python: 1,843; makefile: 143
file content (41 lines) | stat: -rw-r--r-- 1,554 bytes parent folder | download | duplicates (2)
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
39
40
41
#-*- coding: utf-8 -*-

# Release details for package

name         = "PyWavelets"
version      = "0.2.0"
author       = "Filip Wasilewski"
author_email = "filip.wasilewski@gmail.com"
url          = "http://www.pybytes.com/pywavelets/"
download_url = "http://pypi.python.org/pypi/PyWavelets/"
license      = "MIT"
description  = "PyWavelets, wavelet transform module."
keywords     = ['wavelets', 'wavelet transform', 'DWT', 'SWT', 'scientific', 'NumPy']
platforms    = ['Linux', 'Mac OSX', 'Windows XP/2000/NT']
svn          = "http://wavelets.scipy.org/svn/multiresolution/pywt/trunk"


long_description = \
"""
PyWavelets is a Python wavelet transforms module that includes:

  * 1D and 2D Forward and Inverse Discrete Wavelet Transform (DWT and IDWT)
  * 1D and 2D Stationary Wavelet Transform (Undecimated Wavelet Transform)
  * 1D and 2D Wavelet Packet decomposition and reconstruction
  * Computing Approximations of wavelet and scaling functions
  * Over seventy built-in wavelet filters and support for custom wavelets
  * Single and double precision calculations
  * Results compatibility with Matlab Wavelet Toolbox (tm)
"""

classifiers = [
    'Development Status :: 5 - Production/Stable',
    'Intended Audience :: Developers',
    'Intended Audience :: Education',
    'Intended Audience :: Science/Research',
    'License :: OSI Approved :: MIT License',
    'Operating System :: OS Independent',
    'Programming Language :: C',
    'Programming Language :: Python',
    'Topic :: Software Development :: Libraries :: Python Modules'
]