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 33 34 35 36 37 38
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import untangle
from setuptools import setup, find_packages
from pathlib import Path
long_description = (Path(__file__).parent / "README.md").read_text()
setup(
name="untangle",
packages=find_packages(),
version=untangle.__version__,
description="Convert XML documents into Python objects",
long_description_content_type="text/markdown",
long_description=long_description,
author="Christian Stefanescu",
author_email="hello@stchris.net",
url="http://github.com/stchris//untangle",
py_modules=["untangle"],
install_requires=["defusedxml"],
include_package_data=True,
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)
# vim: set expandtab ts=4 sw=4:
|