django-dbtemplates/setup.py
leidel df4cd6eefc fixed wrong link in setup.py and readme
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
2008-09-10 19:29:32 +00:00

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