mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-17 06:30:29 +00:00
git-svn-id: https://django-dbtemplates.googlecode.com/svn/trunk@67 cfb8ba98-e953-0410-9cff-959ffddf5974 committer: leidel <leidel@cfb8ba98-e953-0410-9cff-959ffddf5974> --HG-- extra : convert_revision : b17aa26289871ff1eea693d117c3527e3e315efa
27 lines
924 B
Python
27 lines
924 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='django-dbtemplates',
|
|
version='0.5.1',
|
|
description='Template loader for database stored templates',
|
|
long_description=open('docs/overview.txt').read(),
|
|
author='Jannis Leidel',
|
|
author_email='jannis@leidel.info',
|
|
url='http://www.bitbucket.org/jezdez/django-dbtemplates/wiki/',
|
|
download_url='http://www.bitbucket.org/jezdez/django-dbtemplates/get/v0.5.1.gz',
|
|
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',
|
|
'Framework :: Django',
|
|
]
|
|
)
|