diff --git a/setup.py b/setup.py index a2fa55c..290104c 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ MAINTAINER = 'lab41' MAINTAINER_EMAIL = 'info@lab41.org' URL = 'https://github.com/Lab41/cyphercat' -LICENSE = 'MIT' +LICENSE = 'Apache 2.0' here = os.path.abspath(os.path.dirname(__file__)) @@ -88,6 +88,18 @@ def run(self): author_email=MAINTAINER_EMAIL, url=URL, packages=['cyphercat'], + classifiers=[ + # Trove classifiers + # Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers + 'License :: OSI Approved :: Apache Software License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: Implementation :: CPython', + 'Topic :: Scientific/Engineering :: Artificial Intelligence', + 'Topic :: Security', + 'Intended Audience :: Science/Research', + ], #packages=find_packages(), install_requires=INSTALL_REQUIRES, #external packages as dependencies setup_requires=['setuptools>=38.6.0'],