This repository was archived by the owner on Aug 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from Benjamin-Lee/patch-1
Update license in setup.py and add trove classifiers
- Loading branch information
Showing
1 changed file
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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__)) | ||
|
@@ -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'], | ||
|