Skip to content

Commit

Permalink
Merge pull request #2 from edx/clintonb/pypi
Browse files Browse the repository at this point in the history
Added support for publication to PyPI
  • Loading branch information
clintonb committed Apr 1, 2016
2 parents 45a4413 + cc57a21 commit 03cd819
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,12 @@ script:
- make quality
after_success:
- coveralls
deploy:
provider: pypi
user: edx
password:
secure: mVj5hakAygVDTuNNni54BVfnA/BYIwuX7AYgnZHgy5e/FmxA5IF7JzDyGFxSXvtuI2qXBj9tQejSTe27a7qtRxAOdgarpaJK1vY5uuo751vuXct9LyrMOIYV3bNCa/y/cMfvPBl+OAlF75jxgb3HRUOgNq5fn8RYQ+uaUdJW+bzvKtaOJT3qZ6K3G87AtqL+yaWJqNHHbvY+olJHZVqiroNaKdHNegZacGx3YiIMxHF6//eMxQbl/PquZh2DMLXDPc2TwnLs1DJ2/O+Q/lVbA3BZZgivSe8rMMUtUQECopvy/+tK/3U/o0DXyQcoGaG0Ktp7jas+NI2vyanG6U3PI4i1HRjdecEtynow/ZvxHMPhLXNpHo/2m7DyQPux2bGhM5e5gW4JSARa+Ko6b+bs87BLCX9IQFMMymXxYGy+AP/f1YB8xrf6TyGTbcA+PT4Pkzmg/djvPqYOfnFNANibji0WpZ+aPZ47YI1mQUM1J60nQNvScL538JAT33c0wgVFf3x+0ZmY0MbwwIkHuFIsvrrKJHuGvNBQDIDAkPmVLGJt8YjQwwhuP4KHN6kCrdlVZzEXNDtwp+qbUK//4LzmM5id7fL7q0cdf4w2i2MW/scZ7jlc+Wo4plvYlb98y9qNJcyVw7ZT7mram0oupiF9e6QjH9QulbJ63/kNbEnAt1c=
on:
tags: true
distributions: sdist bdist_wheel
repo: edx/ccx-keys
22 changes: 18 additions & 4 deletions setup.py
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': [
Expand Down

0 comments on commit 03cd819

Please sign in to comment.