2007-07-20 14:52:00 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
2008-05-13 22:34:38 +00:00
|
|
|
setup(
|
2008-09-07 22:23:37 +00:00
|
|
|
name='django-dbtemplates',
|
2008-11-21 11:26:14 +00:00
|
|
|
version=__import__('dbtemplates').__version__,
|
|
|
|
|
description='Template loader for database stored templates with extensible cache backend',
|
2008-11-09 13:56:05 +00:00
|
|
|
long_description=open('docs/overview.txt').read(),
|
2008-05-13 22:34:38 +00:00
|
|
|
author='Jannis Leidel',
|
|
|
|
|
author_email='jannis@leidel.info',
|
2008-11-28 13:06:34 +00:00
|
|
|
url='http://github.com/jezdez/django-dbtemplates/wikis/',
|
2008-12-26 17:39:48 +00:00
|
|
|
download_url='http://github.com/jezdez/django-dbtemplates/zipball/0.5.4',
|
2008-05-13 22:46:52 +00:00
|
|
|
packages=[
|
|
|
|
|
'dbtemplates',
|
|
|
|
|
'dbtemplates.management',
|
|
|
|
|
'dbtemplates.management.commands'
|
|
|
|
|
],
|
2008-05-13 22:34:38 +00:00
|
|
|
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',
|
2008-11-09 13:55:20 +00:00
|
|
|
'Framework :: Django',
|
2008-05-13 22:34:38 +00:00
|
|
|
]
|
|
|
|
|
)
|