add classifiers to setup.py

This commit is contained in:
Ehsan Azarnasab 2015-08-20 10:51:07 -07:00
parent 69ff6a3fff
commit 26b9de7006

View File

@ -393,4 +393,23 @@ setup(
zip_safe=False,
ext_modules=[Extension('dlib', [])],
ext_package='dlib',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: Boost Software License (BSL)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft',
'Operating System :: Microsoft :: Windows',
'Programming Language :: C++',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Software Development',
],
)