Added language classifier for python (#4327)

* Added language classifier for python

* Removed python2 language classifier

* Fix formatting
This commit is contained in:
Mayank Suman 2019-04-08 23:43:26 +05:30 committed by Philip Hyunsu Cho
parent c7bc739ed2
commit 360f25ec27

View File

@ -46,5 +46,12 @@ setup(name='xgboost',
include_package_data=True,
data_files=[('xgboost', LIB_PATH)],
license='Apache-2.0',
classifiers=['License :: OSI Approved :: Apache Software License'],
classifiers=['License :: OSI Approved :: Apache Software License',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'],
url='https://github.com/dmlc/xgboost')