-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
24 lines (23 loc) · 846 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
import os
setup(
name = 'django-html',
packages = ['django_html', 'django_html.templatetags'],
version=__import__('django_html').__version__,
description='Template tags for smarter outputting of HTML in Django',
long_description=open('README.rst').read(),
author='Simon Willison',
url='http://github.com/simonw/django-html',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)