mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-17 06:30:29 +00:00
committer: Jannis Leidel <jannis@leidel.info> --HG-- extra : convert_revision : adf33b8f9e976f92d0a82d753b265e693dca947c
28 lines
961 B
Python
28 lines
961 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://github.com/jezdez/django-dbtemplates/wikis/',
|
|
download_url='http://github.com/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',
|
|
]
|
|
)
|