From: W. Trevor King Date: Tue, 8 Feb 2011 20:10:52 +0000 (-0500) Subject: Fix doclines -> __doc__ in setup.py description. X-Git-Tag: 0.3~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=637029f1f440c8aa24577fbfd9af5afd2c5705cf;p=FFT-tools.git Fix doclines -> __doc__ in setup.py description. --- diff --git a/setup.py b/setup.py index 6d744b5..982b173 100644 --- 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'],