Files
deb-python-jingo/setup.py
2013-01-09 14:21:29 -05:00

30 lines
939 B
Python

from setuptools import setup
setup(
name='jingo',
version='0.6.1',
description='An adapter for using Jinja2 templates with Django.',
long_description=open('README.rst').read(),
author='Jeff Balogh',
author_email='jbalogh@mozilla.com',
url='http://github.com/jbalogh/jingo',
license='BSD',
packages=['jingo'],
include_package_data=True,
zip_safe=False,
install_requires=['jinja2'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
# I don't know what exactly this means, but why not?
'Environment :: Web Environment :: Mozilla',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)