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

Commit 23bf847

Browse files
committed
Merge pull request #21 from edx/clintonb/pypi
Added support for automated pushes to PyPI
2 parents cea28d0 + 2dca6c2 commit 23bf847

File tree

5 files changed

+19
-9
lines changed

5 files changed

+19
-9
lines changed

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,12 @@ script:
1818

1919
after_success:
2020
- codecov
21+
22+
deploy:
23+
provider: pypi
24+
user: edx
25+
password:
26+
secure: vq1P/q8v0doD55DGSvL8geAo4+ADz71kqCQJeZcXLfX3ICWAbW/l7eKpJNcp3wE7j2T45QpTp8L84PAL71Lh9gQho0R3mH3kDFTESn/03PSJAfjyuOMLRP+cCKE5UZ5FVg3vA3ZZRN2qHFX+5WlalbZjQgPf1HMX9n3YDdiWg0I=
27+
distributions: sdist bdist_wheel
28+
on:
29+
tags: true

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1919
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2020
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2121
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22-
OTHER DEALINGS IN THE SOFTWARE.
22+
OTHER DEALINGS IN THE SOFTWARE.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ django-oauth2-provider
77
.. image:: http://codecov.io/github/edx/django-oauth2-provider/coverage.svg?branch=edx
88
:target: http://codecov.io/github/edx/django-oauth2-provider?branch=edx
99

10-
*django-oauth2-provider* is a Django application that provides
10+
This is an edX-customized fork of *django-oauth2-provider*, a Django application that provides
1111
customizable OAuth2\-authentication for your Django projects.
1212

1313
`Documentation <http://readthedocs.org/docs/django-oauth2-provider/en/latest/>`_

provider/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.7-fork-edx-6"
1+
__version__ = '0.3.0'

setup.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
#!/usr/bin/env python
22

33
from setuptools import setup, find_packages
4+
45
import provider
56

67
setup(
7-
name='django-oauth2-provider',
8+
name='edx-django-oauth2-provider',
89
version=provider.__version__,
9-
description='Provide OAuth2 access to your app',
10+
description='edX fork of django-oauth2-provider',
1011
long_description=open('README.rst').read(),
11-
author='Alen Mujezinovic',
12-
author_email='[email protected]',
13-
url = 'https://github.com/caffeinehit/django-oauth2-provider',
14-
packages= find_packages(exclude=('tests*',)),
12+
author='edX',
13+
author_email='[email protected]',
14+
url='https://github.com/edx/django-oauth2-provider',
15+
packages=find_packages(exclude=('tests*',)),
1516
classifiers=[
1617
'Environment :: Web Environment',
1718
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)