Update URLs from einstein to tremily.
[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 classifiers = """\
10 Development Status :: 2 - Pre-Alpha
11 Intended Audience :: Developers
12 Intended Audience :: Science/Research
13 Operating System :: POSIX
14 Operating System :: Unix
15 License :: OSI Approved :: BSD License
16 Programming Language :: Python
17 Topic :: Scientific/Engineering
18 Topic :: Software Development :: Libraries :: Python Modules
19 """
20
21 _this_dir = os.path.dirname(__file__)
22
23 setup(name='FFT-tools',
24       version=__version__,
25       maintainer='W. Trevor King',
26       maintainer_email='wking@drexel.edu',
27       url = 'http://blog.tremily.us/posts/FFT-tools/',
28       download_url = 'http://git.tremily.us/?p=FFT-tools.git;a=snapshot;h={};sf=tgz'.format(__version__),
29       license = 'GNU General Public License (GPL)',
30       platforms = ['all'],
31       description = __doc__,
32       long_description = open(os.path.join(_this_dir, 'README'), 'r').read(),
33       classifiers = filter(None, classifiers.split('\n')),
34       py_modules = ['FFT_tools'],
35       )