forked from jazkarta/obsolete-ccx-keys
-
Notifications
You must be signed in to change notification settings - Fork 6
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 #2 from edx/clintonb/pypi
Added support for publication to PyPI
- Loading branch information
Showing
2 changed files
with
27 additions
and
4 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
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 |
---|---|---|
@@ -1,13 +1,27 @@ | ||
from setuptools import setup | ||
|
||
setup( | ||
name="ccx_keys", | ||
version="0.1.1", | ||
name='edx-ccx-keys', | ||
version='0.1.2', | ||
author='edX', | ||
author_email='[email protected]', | ||
description='Opaque key support custom courses on edX', | ||
url='https://github.com/edx/ccx-keys', | ||
license='AGPL', | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Web Environment', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: GNU Affero General Public License v3', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2.7', | ||
], | ||
packages=[ | ||
"ccx_keys", | ||
'ccx_keys', | ||
], | ||
install_requires=[ | ||
"edx-opaque-keys>=0.2.1,<1.0.0", | ||
'edx-opaque-keys>=0.2.1,<1.0.0', | ||
], | ||
entry_points={ | ||
'course_key': [ | ||
|