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@21 cfb8ba98-e953-0410-9cff-959ffddf5974 committer: leidel <leidel@cfb8ba98-e953-0410-9cff-959ffddf5974> --HG-- extra : convert_revision : 8127ffb5265757b42f66a548c30def925506411c
19 lines
No EOL
804 B
Python
19 lines
No EOL
804 B
Python
from distutils.core import setup
|
|
|
|
setup(name='dbtemplates',
|
|
version='0.2.5',
|
|
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'],
|
|
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'],
|
|
) |