Authentication using cryptocurrency wallets for Django projects
Go to file
Gonçalo Valério bd47658c8a update release instructions 2019-11-25 19:39:39 +00:00
.github Initial commit. Cookiecutter based project structure 2019-09-24 18:02:54 +01:00
django_cryptolock add missing f-string symbol 2019-11-25 19:24:46 +00:00
docs update makefile and format all code with black 2019-10-19 21:25:34 +01:00
example added simple monero auth views and forms 2019-11-25 17:08:43 +00:00
tests removed support for python 3.5 and added 3.8 2019-11-25 19:23:59 +00:00
.coveragerc Initial commit. Cookiecutter based project structure 2019-09-24 18:02:54 +01:00
.editorconfig Initial commit. Cookiecutter based project structure 2019-09-24 18:02:54 +01:00
.gitignore add tests for the current address model and validator 2019-10-15 19:13:39 +01:00
.travis.yml removed support for python 3.5 and added 3.8 2019-11-25 19:23:59 +00:00
AUTHORS.rst Initial commit. Cookiecutter based project structure 2019-09-24 18:02:54 +01:00
CONTRIBUTING.rst Initial commit. Cookiecutter based project structure 2019-09-24 18:02:54 +01:00
HISTORY.rst Initial commit. Cookiecutter based project structure 2019-09-24 18:02:54 +01:00
LICENSE Initial commit. Cookiecutter based project structure 2019-09-24 18:02:54 +01:00
MANIFEST.in Add first implementation of the authentication backend 2019-10-15 17:45:18 +01:00
Makefile update release instructions 2019-11-25 19:39:39 +00:00
README.rst Remove non-required code and format with black 2019-10-14 13:13:54 +01:00
manage.py Initial commit. Cookiecutter based project structure 2019-09-24 18:02:54 +01:00
pytest.ini use pytest for testing 2019-10-15 18:13:56 +01:00
requirements.txt Add first implementation of the authentication backend 2019-10-15 17:45:18 +01:00
requirements_dev.txt update release instructions 2019-11-25 19:39:39 +00:00
requirements_test.txt add tests for the current address model and validator 2019-10-15 19:13:39 +01:00
setup.cfg Initial commit. Cookiecutter based project structure 2019-09-24 18:02:54 +01:00
setup.py removed support for python 3.5 and added 3.8 2019-11-25 19:23:59 +00:00
tox.ini removed support for python 3.5 and added 3.8 2019-11-25 19:23:59 +00:00

README.rst

=============================
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