From 867fa289b77eb0b3dd68ce7919e4dc274089953e Mon Sep 17 00:00:00 2001 From: Nickolai Novik Date: Tue, 17 Feb 2015 21:44:52 +0200 Subject: [PATCH] fix classifiers --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 75da5450..88ff9108 100755 --- a/setup.py +++ b/setup.py @@ -35,16 +35,17 @@ def read_version(): raise RuntimeError('Cannot find version in aiomysql/__init__.py') classifiers = [ + 'License :: OSI Approved :: MIT License', + 'Intended Audience :: Developers', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: Implementation :: CPython', + 'Operating System :: POSIX', + 'Environment :: Web Environment', 'Development Status :: 3 - Alpha', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: MIT License', 'Topic :: Database', 'Topic :: Database :: Front-Ends', -], +] setup(name='aiomysql',