Change email address to tremily and cleanup setup.py classifiers.
authorW. Trevor King <wking@tremily.us>
Sun, 22 Jul 2012 16:00:07 +0000 (12:00 -0400)
committerW. Trevor King <wking@tremily.us>
Sun, 22 Jul 2012 16:01:22 +0000 (12:01 -0400)
.mailmap [new file with mode: 0644]
setup.py

diff --git a/.mailmap b/.mailmap
new file mode 100644 (file)
index 0000000..4a905eb
--- /dev/null
+++ b/.mailmap
@@ -0,0 +1 @@
+W. Trevor King <wking@tremily.us> <wking@drexel.edu>
index 1b76c4ec6b49947d201bb6ef053511a4304e1b43..a34f8275185562127142b99b2cfa858c89e322eb 100644 (file)
--- 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'],
       )