From: W. Trevor King Date: Sun, 22 Jul 2012 16:00:07 +0000 (-0400) Subject: Change email address to tremily and cleanup setup.py classifiers. X-Git-Tag: 0.3~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=01068bb3979504a81dad908877ee0b02cc12426a;p=FFT-tools.git Change email address to tremily and cleanup setup.py classifiers. --- diff --git a/.mailmap b/.mailmap new file mode 100644 index 0000000..4a905eb --- /dev/null +++ b/.mailmap @@ -0,0 +1 @@ +W. Trevor King diff --git a/setup.py b/setup.py index 1b76c4e..a34f827 100644 --- a/setup.py +++ b/setup.py @@ -6,30 +6,29 @@ import os.path from FFT_tools import __version__ -classifiers = """\ -Development Status :: 2 - Pre-Alpha -Intended Audience :: Developers -Intended Audience :: Science/Research -Operating System :: POSIX -Operating System :: Unix -License :: OSI Approved :: BSD License -Programming Language :: Python -Topic :: Scientific/Engineering -Topic :: Software Development :: Libraries :: Python Modules -""" - +package_name = 'FFT-tools' _this_dir = os.path.dirname(__file__) -setup(name='FFT-tools', +setup(name=package_name, version=__version__, maintainer='W. Trevor King', - maintainer_email='wking@drexel.edu', - url = 'http://blog.tremily.us/posts/FFT-tools/', - download_url = 'http://git.tremily.us/?p=FFT-tools.git;a=snapshot;h={};sf=tgz'.format(__version__), + maintainer_email='wking@tremily.us', + url = 'http://blog.tremily.us/posts/{}/'.format(package_name), + download_url = 'http://git.tremily.us/?p={}.git;a=snapshot;h={};sf=tgz'.format(package_name, __version__), license = 'GNU General Public License (GPL)', platforms = ['all'], description = __doc__, long_description = open(os.path.join(_this_dir, 'README'), 'r').read(), - classifiers = filter(None, classifiers.split('\n')), + classifiers = [ + 'Development Status :: 2 - Pre-Alpha', + 'Intended Audience :: Developers', + 'Intended Audience :: Science/Research', + 'Operating System :: POSIX', + 'Operating System :: Unix', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Programming Language :: Python', + 'Topic :: Scientific/Engineering', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], py_modules = ['FFT_tools'], )