public
Description: Fieldset Rendering For Non-Admin Forms
Homepage:
Clone URL: git://github.com/muhuk/django-formfieldset.git
muhuk (author)
Thu Aug 06 00:36:40 -0700 2009
commit  b4f91c9113d6aa171876aed5689c071432535b1e
tree    820662701f623247e3241ec217e10c61eda01b44
parent  47fbcbf09f847d6f5835cd59157a57598720186c
django-formfieldset / setup.py
100644 25 lines (21 sloc) 0.892 kb
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
from distutils.core import setup
from formfieldset import __version__, __maintainer__, __email__
 
license_text = open('LICENSE.txt').read()
long_description = open('README.rst').read()
 
 
setup(
    name = 'django-formfieldset',
    version = __version__,
    url = 'http://github.com/muhuk/django-formfieldset/tree/master',
    author = __maintainer__,
    author_email = __email__,
    license = license_text,
    packages = ['formfieldset'],
    description = 'Fieldset Rendering For Non-Admin Forms',
    long_description=long_description,
    classifiers = ['Development Status :: 5 - Production/Stable',
                   'Environment :: Web Environment',
                   'Framework :: Django',
                   'Intended Audience :: Developers',
                   'License :: OSI Approved :: BSD License',
                   'Topic :: Internet :: WWW/HTTP :: Dynamic Content']
)