-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
32 lines (30 loc) · 1.08 KB
/
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
25
26
27
28
29
30
31
32
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-html_sanitizer',
version='0.1.5',
author='Selwin Ong',
author_email='[email protected]',
packages=['sanitizer'],
package_data={'': ['README.rst'],
'sanitizer': ['templatetags/*.py']},
url='https://github.com/ui/django-html_sanitizer',
license='MIT',
description='Provides a set of HTML cleaning utilities for django models, forms and templates.',
long_description=open('README.rst').read(),
zip_safe=False,
include_package_data=True,
install_requires=['django', 'bleach'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML',
]
)