diff options
author | Andy Li <andy@onthewings.net> | 2013-02-19 02:30:44 +0800 |
---|---|---|
committer | Andy Li <andy@onthewings.net> | 2013-02-19 02:30:44 +0800 |
commit | 565a8ec40162f20a004b826ad339c655f696b45e (patch) | |
tree | a4ba4fe5b8874e3305941613034e6f6548bdb6a9 /setup.py | |
parent | 25273ed077997a0ed8ca8bcf34be7b94e248c5cb (diff) | |
parent | 054c464c70c115f476608a51bb0b4a931d1fa400 (diff) | |
download | pygments-565a8ec40162f20a004b826ad339c655f696b45e.tar.gz |
Merge upstream changes.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -21,9 +21,9 @@ The `Pygments tip`_ is installable with ``easy_install Pygments==dev``. .. _Pygments tip: - http://bitbucket.org/birkenfeld/pygments-main/get/tip.zip#egg=Pygments-dev + http://bitbucket.org/birkenfeld/pygments-main/get/default.zip#egg=Pygments-dev - :copyright: Copyright 2006-2012 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2013 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -60,7 +60,7 @@ else: setup( name = 'Pygments', - version = '1.5', + version = '1.6', url = 'http://pygments.org/', license = 'BSD License', author = 'Georg Brandl', @@ -77,11 +77,13 @@ setup( 'Intended Audience :: Developers', 'Intended Audience :: End Users/Desktop', 'Intended Audience :: System Administrators', - 'Development Status :: 5 - Production/Stable', + 'Development Status :: 6 - Mature', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', 'Operating System :: OS Independent', + 'Topic :: Text Processing :: Filters', + 'Topic :: Utilities', ], cmdclass = {'build_py': build_py}, **add_keywords |