diff options
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ LONG_DESCRIPTION = "\n".join(DOCLINES[2:]) URL = "http://www.numpy.org" DOWNLOAD_URL = "http://sourceforge.net/projects/numpy/files/NumPy/" LICENSE = 'BSD' -CLASSIFIERS = filter(None, CLASSIFIERS.split('\n')) +CLASSIFIERS = [_f for _f in CLASSIFIERS.split('\n') if _f] AUTHOR = "Travis E. Oliphant et al." AUTHOR_EMAIL = "oliphant@enthought.com" PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"] |