From 495ae897953bbf3025c6ad56a8f6ce2c4d17881d Mon Sep 17 00:00:00 2001 From: baderbuddy Date: Fri, 2 Dec 2016 15:29:46 -0500 Subject: [PATCH] Adding license information to setup.py Adding license metadata to setup.py --- Python/setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Python/setup.py b/Python/setup.py index 3b11cb1..1e86e64 100644 --- a/Python/setup.py +++ b/Python/setup.py @@ -20,4 +20,6 @@ author_email = 'ben@benhamner.com', packages = ['ml_metrics', 'ml_metrics.custom'], install_requires = requirements, + license = 'BSD-2-Clause', + classifiers = ['License :: OSI Approved :: BSD License'], **extra)