Files
edx-platform/common/lib/safe_lxml/setup.py
2014-09-11 20:14:37 +05:00

16 lines
208 B
Python

"""
Setup.py for safe_lxml.
"""
from setuptools import setup
setup(
name="safe_lxml",
version="1.0",
packages=["safe_lxml"],
install_requires=[
"lxml",
"defusedxml"
],
)