mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-16 22:20:28 +00:00
34 lines
1.2 KiB
Python
34 lines
1.2 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='django-dbtemplates',
|
|
version=__import__('dbtemplates').__version__,
|
|
description='Template loader for templates stored in the database',
|
|
long_description=open('README.rst').read(),
|
|
author='Jannis Leidel',
|
|
author_email='jannis@leidel.info',
|
|
url='http://django-dbtemplates.readthedocs.org/',
|
|
packages=find_packages(exclude=['example']),
|
|
zip_safe=False,
|
|
package_data = {
|
|
'dbtemplates': [
|
|
'locale/*/LC_MESSAGES/*',
|
|
'static/dbtemplates/css/*.css',
|
|
'static/dbtemplates/js/*.js',
|
|
],
|
|
},
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Environment :: Web Environment',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.5',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Framework :: Django',
|
|
],
|
|
install_requires=['django-appconf >= 0.4'],
|
|
)
|