├── .bumpversion.cfg ├── .coveragerc ├── .flake8 ├── .github └── workflows │ └── test.yaml ├── .gitignore ├── .hgignore ├── .readthedocs.yaml ├── CHANGES.rst ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── ext │ └── otpdocs.py └── source │ ├── .spell.utf-8.add │ ├── changes.rst │ ├── conf.py │ └── index.rst ├── pyproject.toml ├── src └── otp_yubikey │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200723_1650.py │ └── __init__.py │ ├── models.py │ └── tests.py └── test └── test_project ├── __init__.py ├── settings.py ├── templates └── registration │ └── logged_out.html └── urls.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = otp_yubikey -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/.hgignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/ext/otpdocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/docs/ext/otpdocs.py -------------------------------------------------------------------------------- /docs/source/.spell.utf-8.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/docs/source/.spell.utf-8.add -------------------------------------------------------------------------------- /docs/source/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/docs/source/changes.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/otp_yubikey/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/otp_yubikey/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/src/otp_yubikey/admin.py -------------------------------------------------------------------------------- /src/otp_yubikey/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/src/otp_yubikey/apps.py -------------------------------------------------------------------------------- /src/otp_yubikey/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/src/otp_yubikey/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/otp_yubikey/migrations/0002_auto_20200723_1650.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/src/otp_yubikey/migrations/0002_auto_20200723_1650.py -------------------------------------------------------------------------------- /src/otp_yubikey/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/otp_yubikey/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/src/otp_yubikey/models.py -------------------------------------------------------------------------------- /src/otp_yubikey/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/src/otp_yubikey/tests.py -------------------------------------------------------------------------------- /test/test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/test/test_project/settings.py -------------------------------------------------------------------------------- /test/test_project/templates/registration/logged_out.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-otp/django-otp-yubikey/HEAD/test/test_project/urls.py --------------------------------------------------------------------------------