modify setup.py
This commit is contained in:
parent
5518ac1c2e
commit
9cc6848a0f
@ -1,11 +1,21 @@
|
|||||||
|
=====================
|
||||||
|
Django bootatrap form
|
||||||
|
=====================
|
||||||
|
|
||||||
Generate twitter-bootstrap form output for django form
|
Generate twitter-bootstrap form output for django form
|
||||||
|
|
||||||
A django template tag to work with twitter bootstrap ( http://twitter.github.com/bootstrap/ )
|
A django template tag to work with twitter bootstrap ( http://twitter.github.com/bootstrap/ )
|
||||||
|
|
||||||
Installation:
|
|
||||||
|
Installation
|
||||||
|
============
|
||||||
|
|
||||||
Add 'bootstrapform' to INSTALLED_APPS.
|
Add 'bootstrapform' to INSTALLED_APPS.
|
||||||
|
|
||||||
Template usage:
|
|
||||||
|
Usage
|
||||||
|
=====
|
||||||
|
|
||||||
{% load bootstrap %}
|
{% load bootstrap %}
|
||||||
|
|
||||||
{{ form|bootstrap }}
|
{{ form|bootstrap }}
|
23
setup.py
23
setup.py
@ -1,13 +1,22 @@
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
from bootstrapform.meta import VERSION
|
from bootstrapform.meta import VERSION
|
||||||
|
|
||||||
|
setup(
|
||||||
setup(name='django-bootstrap-form',
|
name='django-bootstrap-form',
|
||||||
author='tzangms', author_email='tzangms@gmail.com',
|
|
||||||
url='https://github.com/tzangms/django-bootstrap-form',
|
|
||||||
version=str(VERSION),
|
version=str(VERSION),
|
||||||
|
description="django-bootstrap-form",
|
||||||
|
classifiers=[
|
||||||
|
"Programming Language :: Python",
|
||||||
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||||
|
"Framework :: Django",
|
||||||
|
"Environment :: Web Environment",
|
||||||
|
],
|
||||||
|
keywords='bootstrap,django',
|
||||||
|
author='tzangms',
|
||||||
|
author_email='tzangms@gmail.com',
|
||||||
|
url='http://github.com/tzangms/django-bootstrap-form',
|
||||||
|
license='BSD',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=['django'],
|
zip_safe=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user