Metadata-Version: 2.1
Name: django-tapeforms
Version: 1.0.1
Summary: A helper to render Django forms using HTML templates.
Home-page: https://github.com/stephrdev/django-tapeforms
License: MIT
Author: Stephan Jaekel
Author-email: steph@rdev.info
Requires-Python: >=3.6,<4
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Provides-Extra: docs
Requires-Dist: Django (>=2)
Requires-Dist: Sphinx (>=3.5); extra == "docs"
Requires-Dist: importlib-metadata; python_version < "3.8"
Project-URL: Repository, https://github.com/stephrdev/django-tapeforms
Description-Content-Type: text/x-rst

django-tapeforms
================

.. image:: https://img.shields.io/pypi/v/django-tapeforms.svg
   :target: https://pypi.python.org/pypi/django-tapeforms
   :alt: Latest Version

.. image:: https://codecov.io/gh/stephrdev/django-tapeforms/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/stephrdev/django-tapeforms
   :alt: Coverage Status

.. image:: https://readthedocs.org/projects/django-tapeforms/badge/?version=latest
   :target: https://django-tapeforms.readthedocs.io/en/stable/?badge=latest
   :alt: Documentation Status

.. image:: https://travis-ci.org/stephrdev/django-tapeforms.svg?branch=master
   :target: https://travis-ci.org/stephrdev/django-tapeforms

Usage
-----

Please refer to the `Documentation <https://django-tapeforms.readthedocs.io/>`_ to
learn how to use ``django-tapeforms``. Basicly, ``tapeforms`` provides a mixin
and some Django template tags to help you render your forms to HTML.


Requirements
------------

django-tapeforms supports Python 3 only and requires at least Django 2.
No other dependencies are required.


Prepare for development
-----------------------

A Python 3.6 interpreter is required in addition to pipenv.

.. code-block:: shell

    $ poetry install


Now you're ready to start the example project to experiment with tapeforms.

.. code-block:: shell

    $ poetry run python examples/manage.py runserver

