django-dbtemplates/setup.py
leidel dbbca437f2 cosmetic changes
git-svn-id: https://django-dbtemplates.googlecode.com/svn/trunk@19 cfb8ba98-e953-0410-9cff-959ffddf5974

committer: leidel <leidel@cfb8ba98-e953-0410-9cff-959ffddf5974>

--HG--
extra : convert_revision : 16c23faf8bc2f69fb7a59a9521934f5cc875db2e
2007-07-30 20:50:06 +00:00

19 lines
No EOL
804 B
Python

from distutils.core import setup
setup(name='dbtemplates',
version='0.2.4',
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'],
)