forked from matthiask/html-sanitizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (29 loc) · 1.04 KB
/
setup.py
File metadata and controls
executable file
·32 lines (29 loc) · 1.04 KB
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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
setup(
name="html-sanitizer",
version=__import__("html_sanitizer").__version__,
description="HTML sanitizer",
long_description=open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),
author="Matthias Kestenholz",
author_email="mk@feinheit.ch",
url="https://github.com/matthiask/html-sanitizer/",
license="BSD License",
platforms=["OS Independent"],
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development",
],
install_requires=("lxml>=3.6.1", "beautifulsoup4"),
test_suite="html_sanitizer.tests",
)