Skip to content
This repository was archived by the owner on Aug 21, 2020. It is now read-only.

Commit

Permalink
Update license in setup.py and add trove classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin-Lee authored Jan 22, 2019
1 parent d8df054 commit 376e89d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
MAINTAINER = 'lab41'
MAINTAINER_EMAIL = '[email protected]'
URL = 'https://github.com/Lab41/cyphercat'
LICENSE = 'MIT'
LICENSE = 'Apache 2.0'


here = os.path.abspath(os.path.dirname(__file__))
Expand Down Expand Up @@ -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'],
Expand Down

0 comments on commit 376e89d

Please sign in to comment.