mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-16 22:20:28 +00:00
28 lines
971 B
Python
28 lines
971 B
Python
from setuptools import setup, find_packages
|
|
|
|
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://bitbucket.org/jezdez/django-dbtemplates/wiki/Home',
|
|
download_url='http://bitbucket.org/jezdez/django-dbtemplates/downloads/',
|
|
packages=find_packages(),
|
|
zip_safe=False,
|
|
package_data = {
|
|
'dbtemplates': [
|
|
'locale/*/LC_MESSAGES/*',
|
|
],
|
|
},
|
|
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',
|
|
]
|
|
)
|