From ed5781fa55329b0d0dda323b4754f59f3e8aa14b Mon Sep 17 00:00:00 2001 From: Chris Barker Date: Fri, 26 Feb 2016 16:54:13 -0800 Subject: [PATCH] fix PyPi Description issue the description field was set to what should be the long_description field -- making a bit of a mess on PyPi --- python-package/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python-package/setup.py b/python-package/setup.py index 155a30bc8..12bc1a89b 100644 --- a/python-package/setup.py +++ b/python-package/setup.py @@ -23,7 +23,8 @@ print("Install libxgboost from: %s" % LIB_PATH) setup(name='xgboost', version=open(os.path.join(CURRENT_DIR, 'xgboost/VERSION')).read().strip(), #version='0.4a23', - description=open(os.path.join(CURRENT_DIR, 'README.rst')).read(), + description = "XGBoost Python Package", + long_description=open(os.path.join(CURRENT_DIR, 'README.rst')).read(), install_requires=[ 'numpy', 'scipy',