From c52b2faba4d070fb6fe9e0f8fcda34f296522230 Mon Sep 17 00:00:00 2001 From: baderbuddy Date: Thu, 17 Nov 2016 16:36:47 -0500 Subject: [PATCH] Added license information (#1783) Added license information to the setup.py --- python-package/setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python-package/setup.py b/python-package/setup.py index 5b66a0975..27fc21203 100644 --- a/python-package/setup.py +++ b/python-package/setup.py @@ -37,4 +37,6 @@ setup(name='xgboost', # this is the golden line include_package_data=True, data_files=[('xgboost', LIB_PATH)], + license='Apache-2.0', + classifiers=['License :: OSI Approved :: Apache Software License'], url='https://github.com/dmlc/xgboost')