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
This commit is contained in:
Chris Barker 2016-02-26 16:54:13 -08:00
parent 84e9ca000e
commit ed5781fa55

View File

@ -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',