From f1a6b14a7a9bb7e1c246dd54c1be378b072e67eb Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Tue, 2 Jul 2013 07:42:12 +0000 Subject: [PATCH] Fix PyPI classifier strings. --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 30b09fa..9019f5c 100644 --- a/setup.py +++ b/setup.py @@ -109,9 +109,9 @@ greater.""", platforms="Linux, BSD, OSX, Windows", download_url="https://github.com/isislovecruft/python-gnupg/archive/master.zip", classifiers=[ - 'Development Status :: 4 - Alpha', + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", - 'Classifier:: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', + "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", @@ -121,7 +121,7 @@ greater.""", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Topic :: Software Development :: Libraries :: Python Modules", - 'Classifier:: Topic :: Security :: Cryptography', - 'Classifier:: Topic :: Software Development :: Libraries :: Python Modules', - 'Classifier:: Topic :: Utilities',] + "Topic :: Security :: Cryptography", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Utilities",] )