File: setup.py

package info (click to toggle)
python-html-sanitizer 1.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 152 kB
  • sloc: python: 803; sh: 24; makefile: 2
file content (32 lines) | stat: -rwxr-xr-x 1,069 bytes parent folder | download
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",
)