This is an automated email from the ASF dual-hosted git repository.
zhasheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git
The following commit(s) were added to refs/heads/master by this push:
new 2d7166f Add trove classifiers for PyPI page (#11818)
2d7166f is described below
commit 2d7166fd3de3bab62c4221a54ffa475344df4456
Author: cclauss <[email protected]>
AuthorDate: Fri Jul 20 05:00:38 2018 +0200
Add trove classifiers for PyPI page (#11818)
* Add trove classifiers for PyPI page
https://pypi.org/project/mxnet does not currently provide information about
supported languages and Python versions. This PR proposes to add PyPI [trove
classifiers](https://packaging.python.org/specifications/core-metadata/?highlight=trove#classifier-multiple-use)
to make this clear. For an example, see the bottom left of
https://pypi.org/project/requests
* Remove Python 3.7 and add Intended Audience, Topic
---
python/setup.py | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/python/setup.py b/python/setup.py
index 980ce63..ec8414c 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -106,4 +106,28 @@ setup(name='mxnet',
data_files=[('mxnet', [LIB_PATH[0]])],
url='https://github.com/apache/incubator-mxnet',
ext_modules=config_cython(),
+ classifiers=[
+ # https://pypi.org/pypi?%3Aaction=list_classifiers
+ 'Development Status :: 5 - Production/Stable',
+ 'Intended Audience :: Developers',
+ 'Intended Audience :: Education',
+ 'Intended Audience :: Science/Research',
+ 'License :: OSI Approved :: Apache Software License',
+ 'Programming Language :: C++',
+ 'Programming Language :: Cython',
+ 'Programming Language :: Other', # R, Scala
+ 'Programming Language :: Perl',
+ 'Programming Language :: Python',
+ 'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: Implementation :: CPython',
+ 'Topic :: Scientific/Engineering',
+ 'Topic :: Scientific/Engineering :: Artificial Intelligence',
+ 'Topic :: Scientific/Engineering :: Mathematics',
+ 'Topic :: Software Development',
+ 'Topic :: Software Development :: Libraries',
+ 'Topic :: Software Development :: Libraries :: Python Modules',
+ ],
**kwargs)