1#!/usr/bin/env python
2from setuptools import setup, find_packages
3import os
4
5
6def read(fname):
7    return open(os.path.join(os.path.dirname(__file__), fname)).read()
8
9
10setup(
11    name="junit-xml",
12    author="Brian Beyer",
13    author_email="brian@kyr.us",
14    url="https://github.com/kyrus/python-junit-xml",
15    license="MIT",
16    packages=find_packages(exclude=["tests"]),
17    description="Creates JUnit XML test result documents that can be read by tools such as Jenkins",
18    long_description=read("README.rst"),
19    version="1.9",
20    classifiers=[
21        "Development Status :: 5 - Production/Stable",
22        "Intended Audience :: Developers",
23        "License :: Freely Distributable",
24        "License :: OSI Approved :: MIT License",
25        "Operating System :: OS Independent",
26        "Programming Language :: Python",
27        "Programming Language :: Python :: 3",
28        "Topic :: Software Development :: Build Tools",
29        "Topic :: Software Development :: Testing",
30    ],
31    install_requires=["six"],
32)
33