forked from pydanny/django-uni-form
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (43 loc) · 1.74 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
version = '0.7.0'
LONG_DESCRIPTION = """
=====================================
django-uni-form (Django Uni-Form)
=====================================
Django (http://djangoproject.com ) forms are easily rendered as tables,
paragraphs, and unordered lists. However, elegantly rendered div based forms
is something you have to do by hand. The purpose of this application is to
provide a simple tag and/or filter that lets you quickly render forms in a div
format.
Uni-form (http://sprawsm.com/uni-form) has been selected as the base model for
the design of the forms.
This release includes:
* Removed a <hr /> from the layout module.
* Changed templatetags/uni_form.py to templatetags/uni_form_tags.py. Yes, this breaks backwards compatibility but fixes a namespace problems in Django with naming a templatetag library after the parent application.
* Changed form_action attribute to accept not just named URLs but also any old URL.
* Added in uni_form_setup tag.
* Added tests
* Added several new contributors including Dragan Babic
* Added Danish language translation
"""
setup(
name='django-uni-form',
version=version,
description="django-uni-form",
long_description=LONG_DESCRIPTION,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
],
keywords='forms,django',
author='Daniel Greenfeld',
author_email='[email protected]',
url='http://github.com/pydanny/django-uni-form/tree/master',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
setup_requires=['setuptools_git'],
)