Metadata-Version: 2.1
Name: planfftw
Version: 1.0
Summary: Julia-inspired function planners around pyfftw
Home-page: https://github.com/sjpet/planfftw
Author: Stefan Peterson
Author-email: stefan.peterson@rubico.com
License: GPL-3.0
Download-URL: https://github.com/sjpet/planfftw/tarball/1.0
Keywords: pyfftw,fft,fftw,plan,planner
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Utilities
Requires-Dist: numpy
Provides-Extra: dev
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: tox ; extra == 'dev'
Requires-Dist: scipy ; extra == 'dev'
Requires-Dist: pyfftw ; extra == 'dev'
Provides-Extra: speed
Requires-Dist: pyfftw ; extra == 'speed'

planfftw
========

planfftw provides Julia-inspired function planners for fft and a number of fft-
based operations. The initial objective was to provide a clean and highly
optimized interface to the excellent PyFFTW package. However, PyFFTW is not
a strict requirement and planfftw falls back on scipy.fftpack or numpy.fft, 
should it not be available.

Requirements
------------
Python 3.5 or higher
numpy 1.16.1 or higher

Earlier versions may very well work but are not tested.

Highly recommended
-----------
PyFFTW

Installation
------------
Install with::

    pip install planfftw

or::

    easy_install planfftw


