mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-16 22:20:28 +00:00
git-svn-id: https://django-dbtemplates.googlecode.com/svn/trunk@40 cfb8ba98-e953-0410-9cff-959ffddf5974 committer: leidel <leidel@cfb8ba98-e953-0410-9cff-959ffddf5974> --HG-- extra : convert_revision : 677dcc00a18a16d486f0f4e234d45ebaabbb437c
26 lines
822 B
Python
26 lines
822 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='dbtemplates',
|
|
version='0.4.1',
|
|
description='Template loader for database stored templates',
|
|
author='Jannis Leidel',
|
|
author_email='jannis@leidel.info',
|
|
url='http://code.google.com/p/django-databasetemplateloader/',
|
|
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'
|
|
]
|
|
)
|