From fd6173d26a169d930831b5ba9396dfc6791123aa Mon Sep 17 00:00:00 2001 From: Raphael Pierzina Date: Thu, 22 Oct 2015 23:47:56 +0200 Subject: [PATCH] Update setup.py with keywords --- setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index f436879..89af893 100644 --- a/setup.py +++ b/setup.py @@ -30,19 +30,21 @@ def read(fname): classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', - 'Topic :: Software Development :: Testing', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python', - 'Operating System :: OS Independent', - 'License :: OSI Approved :: MIT License', + 'Topic :: Software Development :: Testing', ], entry_points={ 'pytest11': [ 'cookies = pytest_cookies', ], }, + keywords=['cookiecutter', 'pytest'], )