forked from dmlc/xgboost
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update PyPI maintainer; use VERSION for binary wheels (dmlc#2992)
Showing
2 changed files
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,15 +22,14 @@ | |
# detailed instruction in setup_pip.py | ||
setup(name='xgboost', | ||
version=open(os.path.join(CURRENT_DIR, 'xgboost/VERSION')).read().strip(), | ||
# version='0.4a23', | ||
description="XGBoost Python Package", | ||
long_description=open(os.path.join(CURRENT_DIR, 'README.rst')).read(), | ||
install_requires=[ | ||
'numpy', | ||
'scipy', | ||
], | ||
maintainer='Hongliang Liu', | ||
maintainer_email='[email protected]', | ||
maintainer='Hyunsu Cho', | ||
maintainer_email='[email protected]', | ||
zip_safe=False, | ||
packages=find_packages(), | ||
# this will use MANIFEST.in during install where we specify additional files, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,15 +41,14 @@ def has_ext_modules(self): | |
# python setup.py register sdist upload | ||
# and be sure to test it firstly using "python setup.py register sdist upload -r pypitest" | ||
setup(name='xgboost', | ||
# version=open(os.path.join(CURRENT_DIR, 'xgboost/VERSION')).read().strip(), | ||
version='0.6a2', | ||
version=open(os.path.join(CURRENT_DIR, 'xgboost/VERSION')).read().strip(), | ||
description='XGBoost Python Package', | ||
install_requires=[ | ||
'numpy', | ||
'scipy', | ||
], | ||
maintainer='Hongliang Liu', | ||
maintainer_email='[email protected]', | ||
maintainer='Hyunsu Cho', | ||
maintainer_email='[email protected]', | ||
zip_safe=False, | ||
packages=find_packages(), | ||
# don't need this and don't use this, give everything to MANIFEST.in | ||
|