django-dbtemplates/setup.py
leidel d4a634ecb3 added support for newforms-admin with patch by simon.hedberg, thanks
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
2008-02-27 19:03:22 +00:00

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'],
)