Update PyPI maintainer; use VERSION for binary wheels (#2992)
This commit is contained in:
parent
3cef89e15e
commit
4aa346c10b
@ -22,15 +22,14 @@ print("Install libxgboost from: %s" % LIB_PATH)
|
|||||||
# detailed instruction in setup_pip.py
|
# detailed instruction in setup_pip.py
|
||||||
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',
|
|
||||||
description="XGBoost Python Package",
|
description="XGBoost Python Package",
|
||||||
long_description=open(os.path.join(CURRENT_DIR, 'README.rst')).read(),
|
long_description=open(os.path.join(CURRENT_DIR, 'README.rst')).read(),
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'numpy',
|
'numpy',
|
||||||
'scipy',
|
'scipy',
|
||||||
],
|
],
|
||||||
maintainer='Hongliang Liu',
|
maintainer='Hyunsu Cho',
|
||||||
maintainer_email='phunter.lau@gmail.com',
|
maintainer_email='chohyu01@cs.washington.edu',
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
# this will use MANIFEST.in during install where we specify additional files,
|
# this will use MANIFEST.in during install where we specify additional files,
|
||||||
|
|||||||
@ -41,15 +41,14 @@ LIB_PATH = libpath['find_lib_path']()
|
|||||||
# python setup.py register sdist upload
|
# python setup.py register sdist upload
|
||||||
# and be sure to test it firstly using "python setup.py register sdist upload -r pypitest"
|
# and be sure to test it firstly using "python setup.py register sdist upload -r pypitest"
|
||||||
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.6a2',
|
|
||||||
description='XGBoost Python Package',
|
description='XGBoost Python Package',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'numpy',
|
'numpy',
|
||||||
'scipy',
|
'scipy',
|
||||||
],
|
],
|
||||||
maintainer='Hongliang Liu',
|
maintainer='Hyunsu Cho',
|
||||||
maintainer_email='phunter.lau@gmail.com',
|
maintainer_email='chohyu01@cs.washington.edu',
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
# don't need this and don't use this, give everything to MANIFEST.in
|
# don't need this and don't use this, give everything to MANIFEST.in
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user