From 94c1970a03b6bdad03ebdced36e27ef16827a582 Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Fri, 29 Aug 2014 23:46:55 -0400 Subject: [PATCH] Fix up setup.py Add classifiers, license, test suite info --- setup.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/setup.py b/setup.py index 7eb556747..90681d874 100644 --- a/setup.py +++ b/setup.py @@ -33,4 +33,15 @@ setup( }, packages=find_packages(exclude=("tests", "tests.*")), install_requires=install_requires, + license="Apache", + test_suite="tests", + classifiers=[ + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "License :: OSI Approved :: Apache Software License", + "Topic :: Software Development :: Testing", + ], )