FFT_tools: Catch RuntimeErrors when importing matplotlib
[FFT-tools.git] / setup.py
1 "Wrap NumpPy's FFT routines to reduce clutter."
2
3 from distutils.core import setup
4 import os.path
5
6 from FFT_tools import __version__
7
8
9 package_name='FFT-tools'
10 _this_dir = os.path.dirname(__file__)
11
12 setup(name=package_name,
13       version=__version__,
14       maintainer='W. Trevor King',
15       maintainer_email='wking@tremily.us',
16       url='http://blog.tremily.us/posts/{}/'.format(package_name),
17       download_url='http://git.tremily.us/?p={}.git;a=snapshot;h={};sf=tgz'.format(package_name, __version__),
18       license='GNU General Public License (GPL)',
19       platforms=['all'],
20       description=__doc__,
21       long_description=open(os.path.join(_this_dir, 'README'), 'r').read(),
22       classifiers=[
23         'Development Status :: 2 - Pre-Alpha',
24         'Intended Audience :: Developers',
25         'Intended Audience :: Science/Research',
26         'Operating System :: OS Independent',
27         'License :: OSI Approved :: GNU General Public License (GPL)',
28         'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
29         'Programming Language :: Python',
30         'Programming Language :: Python :: 2',
31         'Programming Language :: Python :: 2.7',
32         'Programming Language :: Python :: 3',
33         'Programming Language :: Python :: 3.2',
34         'Topic :: Scientific/Engineering',
35         'Topic :: Software Development :: Libraries :: Python Modules',
36         ],
37       py_modules=['FFT_tools'],
38       )