-
Notifications
You must be signed in to change notification settings - Fork 303
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 #4384 from benjaoming/mit-license
Fix #4382 -- we are MIT licensed
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
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 |
---|---|---|
|
@@ -352,7 +352,7 @@ def install_distributions(distributions): | |
author_email="[email protected]", | ||
url="https://www.learningequality.org", | ||
description=DIST_DESCRIPTION, | ||
license="GPLv3", | ||
license="MIT", | ||
keywords=("khan academy", "offline", "education", "OER"), | ||
scripts=['bin/kalite'], | ||
packages=find_packages(exclude=["python-packages"]), | ||
|
@@ -361,7 +361,7 @@ def install_distributions(distributions): | |
install_requires=DIST_REQUIREMENTS, | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'License :: OSI Approved :: MIT License', | ||
'Environment :: Web Environment', | ||
'Framework :: Django', | ||
'Intended Audience :: Developers', | ||
|