From 637029f1f440c8aa24577fbfd9af5afd2c5705cf Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 8 Feb 2011 15:10:52 -0500 Subject: [PATCH] Fix doclines -> __doc__ in setup.py description. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'], -- 2.26.2