2007-07-20 14:52:00 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
setup(name='dbtemplates',
|
2007-07-30 20:50:06 +00:00
|
|
|
version='0.2.4',
|
2007-07-20 14:52:00 +00:00
|
|
|
description='Template loader for database stored templates',
|
|
|
|
|
author='Jannis Leidel',
|
|
|
|
|
author_email='jannis@leidel.info',
|
|
|
|
|
url='http://code.google.com/p/django-databasetemplateloader/',
|
2007-07-30 17:54:00 +00:00
|
|
|
scripts=['dbtemplates/sync_templates.py',],
|
2007-07-20 14:52:00 +00:00
|
|
|
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'],
|
|
|
|
|
)
|