Metadata-Version: 1.1
Name: django-cryptolock
Version: 0.0.1
Summary: Django authentication using cryptocurrency wallets
Home-page: https://github.com/dethos/django-cryptolock
Author: Gonçalo Valério
Author-email: gon@ovalerio.net
License: MIT
Description: =============================
        Django-Cryptolock
        =============================
        
        .. image:: https://badge.fury.io/py/django-cryptolock.svg
            :target: https://badge.fury.io/py/django-cryptolock
        
        .. image:: https://travis-ci.org/dethos/django-cryptolock.svg?branch=master
            :target: https://travis-ci.org/dethos/django-cryptolock
        
        .. image:: https://coveralls.io/repos/github/dethos/django-cryptolock/badge.svg
            :target: https://coveralls.io/github/dethos/django-cryptolock
        
        Django authentication using cryptocurrency wallets
        
        Documentation
        -------------
        
        The full documentation is at https://django-cryptolock.readthedocs.io.
        
        Quickstart
        ----------
        
        Install Django-Cryptolock::
        
            pip install django-cryptolock
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'django_cryptolock.apps.DjangoCryptolockConfig',
                ...
            )
        
        Add Django-Cryptolock's URL patterns:
        
        .. code-block:: python
        
            from django_cryptolock import urls as django_cryptolock_urls
        
        
            urlpatterns = [
                ...
                url(r'^', include(django_cryptolock_urls)),
                ...
            ]
        
        Features
        --------
        
        * TODO
        
        Running Tests
        -------------
        
        Does the code actually work?
        
        ::
        
            source <YOURVIRTUALENV>/bin/activate
            (myenv) $ pip install tox
            (myenv) $ tox -e <your-python-version>-django-22
        
        Credits
        -------
        
        Tools used in rendering this package:
        
        *  Cookiecutter_
        *  `cookiecutter-djangopackage`_
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage
        
        
        
        
        History
        -------
        
        0.0.1 (2019-09-24)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: django-cryptolock
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
