-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
24 lines (22 loc) · 900 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from distutils.core import setup
setup(
name = 'django-simple-templates',
description = 'Easy, designer-friendly templates and A/B testing friendly tools for Django.',
long_description=u'View `django-simple-templates documentation on Github <https://github.com/jaddison/django-simple-templates>`_.',
author='James Addison',
author_email='[email protected]',
packages = ['simple_templates'],
version = '0.7.0',
url='http://github.com/jaddison/django-simple-templates',
keywords=['a/b testing', 'split testing', 'a/b', 'split'],
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Programming Language :: Python',
'Framework :: Django',
'Topic :: Internet :: WWW/HTTP :: WSGI',
],
)