gituser/production/: django-formtools-2.2 metadata and description

Homepage Simple index

A set of high-level abstractions for Django forms

author Django Software Foundation
author_email foundation@djangoproject.com
classifiers
  • Development Status :: 5 - Production/Stable
  • Environment :: Web Environment
  • Framework :: Django
  • Framework :: Django :: 1.11
  • Framework :: Django :: 2.0
  • Framework :: Django :: 2.1
  • Framework :: Django :: 2.2
  • Framework :: Django :: 3.0
  • Intended Audience :: Developers
  • License :: OSI Approved :: BSD License
  • Operating System :: OS Independent
  • Programming Language :: Python
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.4
  • Programming Language :: Python :: 3.5
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
  • Topic :: Internet :: WWW/HTTP
license BSD
requires_dist
  • Django (>=1.11)
File Tox results History
django_formtools-2.2-py2.py3-none-any.whl
Size
145 KB
Type
Python Wheel
Python
2.7
Jazzband PyPI version Supported Python versions TravisCI Build Status Coveralls Test Coverage

Django’s “formtools” is a set of high-level abstractions for Django forms. Currently for form previews and multi-step forms.

This code used to live in Django proper – in django.contrib.formtools – but was separated into a standalone package in Django 1.8 to keep the framework’s core clean.

For a full list of available formtools, see https://django-formtools.readthedocs.io/

django-formtools can also be found on and installed from the Python Package Index: https://pypi.python.org/pypi/django-formtools

To get more help:

Contributing to django-formtools

See CONTRIBUTING.rst for information about contributing patches to django-formtools.

Running tests is as simple as installing Tox and running it in the root Git clone directory:

$ git clone https://github.com/jazzband/django-formtools
[..]
$ cd django-formtools
$ tox
[..]
  congratulations :)

The previous command will run the tests in different combinations of Python (if available) and Django versions. To see the full list of combinations use the -l option:

$ tox -l
...
py35-django-AB
py35-django-master

You can run each environment with the -e option:

$ tox -e py35-django-AB  # runs the tests only on Python 3.5 and Django A.B.x

Optionally you can also specify a country whose tests you want to run:

$ COUNTRY=us tox

And combine both options:

$ COUNTRY=us tox -e py35-django-AB