Add classifiers

This commit is contained in:
Rico Tiongson 2019-03-06 22:05:30 +08:00
parent 8464084f56
commit adcb3d5e02

View File

@ -134,6 +134,22 @@ try:
bdist_wheel=wrap_command(bdist_wheel) bdist_wheel=wrap_command(bdist_wheel)
) )
# classifiers
# https://pypi.org/classifiers/
classifiers = [
'Development Status :: 4 - Beta'
'Intended Audience :: End Users/Desktop',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: C++',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Environment :: Console'
]
# setup python script # setup python script
setup_script = setup( setup_script = setup(
name=NAME, name=NAME,
@ -150,7 +166,8 @@ try:
entry_points=dict(console_scripts=['{}={}.__main__:main'.format(NAME, PYTHON_NAME)]), entry_points=dict(console_scripts=['{}={}.__main__:main'.format(NAME, PYTHON_NAME)]),
ext_modules=extensions, ext_modules=extensions,
cmdclass=cmdclass, cmdclass=cmdclass,
install_requires=['psutil'] install_requires=['psutil'],
classifiers=classifiers
) )
finally: finally: