mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-17 06:30:29 +00:00
git-svn-id: https://django-dbtemplates.googlecode.com/svn/trunk@51 cfb8ba98-e953-0410-9cff-959ffddf5974 committer: leidel <leidel@cfb8ba98-e953-0410-9cff-959ffddf5974> --HG-- extra : convert_revision : 186cfedaed9e86360460eb6b831e0734c995f630
27 lines
866 B
Python
27 lines
866 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='django-dbtemplates',
|
|
version='0.4.6',
|
|
description='Template loader for database stored templates',
|
|
long_description=open('README.rst').read(),
|
|
author='Jannis Leidel',
|
|
author_email='jannis@leidel.info',
|
|
url='http://code.google.com/p/django-dbtemplates/',
|
|
scripts=['dbtemplates/sync_templates.py',],
|
|
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',
|
|
'Topic :: Utilities'
|
|
]
|
|
)
|