From fc11bc0ea7d44bb22bb32bb7d696e8e8180659f3 Mon Sep 17 00:00:00 2001 From: Anwesha Das Date: Wed, 17 Aug 2016 15:56:43 +0530 Subject: [PATCH] Adds license information to the setup function Adding it as FreeBSD as mentioned in https://en.wikipedia.org/wiki/BSD_licenses#2-clause_license_.28.22Simplified_BSD_License.22_or_.22FreeBSD_License.22.29 FSF prefers the term FreeBSD over Simplified BSD or 2-clause BSD as the license name. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index dfcad04..ed07d37 100644 --- a/setup.py +++ b/setup.py @@ -16,6 +16,7 @@ setup( name="nose-parameterized", version="0.6.dev", url="https://github.com/wolever/nose-parameterized", + license="FreeBSD", author="David Wolever", author_email="david@wolever.net", description="Parameterized testing with any Python test framework",