Fix doclines -> __doc__ in setup.py description.
authorW. Trevor King <wking@drexel.edu>
Tue, 8 Feb 2011 20:10:52 +0000 (15:10 -0500)
committerW. Trevor King <wking@drexel.edu>
Tue, 8 Feb 2011 20:10:52 +0000 (15:10 -0500)
setup.py

index 6d744b5e0b8bfcf94eaa1f7342d6806f9699a845..982b1739338948ec359747adf352b6c597bb4109 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -28,7 +28,7 @@ setup(name='FFT-tools',
       download_url = 'http://www.physics.drexel.edu/~wking/code/python/FFT-tools-%s.tar.gz' % __version__,
       license = 'GNU General Public License (GPL)',
       platforms = ['all'],
-      description = doclines[0],
+      description = __doc__,
       long_description = open(os.path.join(_this_dir, 'README'), 'r').read(),
       classifiers = filter(None, classifiers.split('\n')),
       py_modules = ['FFT_tools'],