Metadata-Version: 2.1
Name: planfftw
Version: 1.1
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.1
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
Description-Content-Type: text/markdown
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: docs
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: numpydoc ; extra == 'docs'
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](https://github.com/pyFFTW/pyFFTW)
package. However, PyFFTW is not a strict requirement and planfftw falls back on
scipy.fftpack or numpy.fft, should it not be available.

Issues, requests and questions can be raised at the Github 
[issues](https://github.com/sjpet/planfftw/issues)-page.

The documentation, albeit somewhat crude, is available on 
[Read the Docs](https://planfftw.readthedocs.io/en/latest/).

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


