django-dbtemplates/setup.py
leidel a8df7a4130 made sync_template.py a script which installs in python's bin dir
git-svn-id: https://django-dbtemplates.googlecode.com/svn/trunk@15 cfb8ba98-e953-0410-9cff-959ffddf5974

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

--HG--
extra : convert_revision : 79849b9391562f13975e52b5f9a18f2712ef95ea
2007-07-30 17:54:00 +00:00

19 lines
No EOL
804 B
Python

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