Change email address to tremily and cleanup setup.py classifiers.
[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 :: POSIX',
27         'Operating System :: Unix',
28         'License :: OSI Approved :: GNU General Public License (GPL)',
29         'Programming Language :: Python',
30         'Topic :: Scientific/Engineering',
31         'Topic :: Software Development :: Libraries :: Python Modules',
32         ],
33       py_modules = ['FFT_tools'],
34       )