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:
parent
84e9ca000e
commit
ed5781fa55
@ -23,7 +23,8 @@ print("Install libxgboost from: %s" % LIB_PATH)
|
|||||||
setup(name='xgboost',
|
setup(name='xgboost',
|
||||||
version=open(os.path.join(CURRENT_DIR, 'xgboost/VERSION')).read().strip(),
|
version=open(os.path.join(CURRENT_DIR, 'xgboost/VERSION')).read().strip(),
|
||||||
#version='0.4a23',
|
#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=[
|
install_requires=[
|
||||||
'numpy',
|
'numpy',
|
||||||
'scipy',
|
'scipy',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user