Metadata-Version: 2.0
Name: social-auth-steemconnect
Version: 0.0.2
Summary: SteemConnect backend for python-social-auth.
Home-page: https://github.com/noisy/python-social-auth-steemconnect
Author: Krzysztof @noisy Szumny
Author-email: noisy.pl@gmail.com
License: LICENSE
Keywords: django social auth oauth2 social-auth steem steemconnect steemit
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: python-social-auth

python-social-auth-steemconnect
===========================

Pluggable authentication backend for python-social-auth, that allows authentication via SteemConnect (v2).


## Installation instructions

>From pypi

    $ pip install social-auth-steemconnect

or clone from Github

    $ git clone git@github.com:noisy/python-social-auth-steemconnect.git
    $ cd python-social-auth-steemconnect && sudo python setup.py install

## Pre-requisites

`python-social-auth` must be installed and configured first. Please visit the
[python-social-auth documentation](http://python-social-auth-docs.readthedocs.io/) for instructions.


## Configuration instructions

1. Add Waveapps backend to AUTHENTICATION_BACKENDS:

        AUTHENTICATION_BACKENDS = (
            'steemconnect.backends.SteemConnectOAuth2',
            ...
            'django.contrib.auth.backends.ModelBackend',
        )

2. Add your Waveapps settings to your django `settings.py` file.

        SOCIAL_AUTH_STEEMCONNECT_KEY = "..."
        SOCIAL_AUTH_STEEMCONNECT_DEFAULT_SCOPE = ['vote', 'comment']


## Changelog

### 0.0.1
* Initial release



