django-dbtemplates/setup.py
leidel 2f37c244b0 Small change in the description
git-svn-id: https://django-dbtemplates.googlecode.com/svn/trunk@82 cfb8ba98-e953-0410-9cff-959ffddf5974

committer: leidel <leidel@cfb8ba98-e953-0410-9cff-959ffddf5974>

--HG--
extra : convert_revision : 5c5cc003dad58a241d8c762bd3e3ac16b581ce3d
2008-11-21 11:25:55 +00:00

27 lines
953 B
Python

from distutils.core import setup
setup(
name='django-dbtemplates',
version='0.5.2',
description='Template loader for database stored templates with pluggable cache backend',
long_description=open('docs/overview.txt').read(),
author='Jannis Leidel',
author_email='jannis@leidel.info',
url='http://www.bitbucket.org/jezdez/django-dbtemplates/wiki/',
download_url='http://www.bitbucket.org/jezdez/django-dbtemplates/get/v0.5.2.gz',
packages=[
'dbtemplates',
'dbtemplates.management',
'dbtemplates.management.commands'
],
package_dir={'dbtemplates': 'dbtemplates'},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)