django-dbtemplates/setup.py
leidel 7fafcbd72b Small change to fix download from Github.
git-svn-id: https://django-dbtemplates.googlecode.com/svn/trunk@87 cfb8ba98-e953-0410-9cff-959ffddf5974

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

--HG--
extra : convert_revision : b0159e9f5cb18d49f224d9d5649614492f80ac49
2008-11-30 00:54:35 +00:00

27 lines
971 B
Python

from distutils.core import setup
setup(
name='django-dbtemplates',
version=__import__('dbtemplates').__version__,
description='Template loader for database stored templates with extensible cache backend',
long_description=open('docs/overview.txt').read(),
author='Jannis Leidel',
author_email='jannis@leidel.info',
url='http://github.com/jezdez/django-dbtemplates/wikis/',
download_url='http://github.com/jezdez/django-dbtemplates/zipball/0.5.3',
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',
]
)