Added setup.py and MANIFEST.in.

This commit is contained in:
Matt Austin 2011-09-14 10:59:37 +08:00
parent becc2ca70d
commit c8ff849e87
2 changed files with 13 additions and 0 deletions

2
MANIFEST.in Normal file
View File

@ -0,0 +1,2 @@
include README
graft bootstrapform/templates

11
setup.py Normal file
View File

@ -0,0 +1,11 @@
from setuptools import setup, find_packages
setup(name='django-bootstrap-form',
author='Matt Austin', author_email='mail@mattaustin.me.uk',
url='https://github.com/MattAustin/django-bootstrap-form',
packages=find_packages(),
include_package_data=True,
install_requires=['django'],
)