diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -5,12 +5,18 @@ from setuptools import setup, find_packages import pygments +# PY24: use .rsplit +index = pygments.__author__.rindex(' ') +author, email = pygments.__author__[:index], pygments.__author__[index+1:] +email = email[1:-1] + setup( name = 'Pygments', version = pygments.__version__, url = pygments.__url__, license = pygments.__license__, - author = pygments.__author__, + author = author, + author_email = email, description = 'Pygments is a syntax highlighting package written in Python.', long_description = pygments.__doc__, keywords = 'syntax highlighting', @@ -20,7 +26,7 @@ setup( zip_safe = False, include_package_data = True, classifiers = [ - 'License :: OSI Approved :: GNU Lesser General Public License (LGPL)', + 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Intended Audience :: Developers', 'Intended Audience :: End Users/Desktop', 'Intended Audience :: System Administrators', |