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 9setup( 10 name='junit-xml', 11 author='Brian Beyer', 12 author_email='brian@kyr.us', 13 url='https://github.com/kyrus/python-junit-xml', 14 license='MIT', 15 packages=find_packages(), 16 test_suite='test_junit_xml', 17 description='Creates JUnit XML test result documents that can be read by ' 18 'tools such as Jenkins', 19 long_description=read('README.rst'), 20 version='1.8', 21 classifiers=[ 22 'Development Status :: 5 - Production/Stable', 23 'Intended Audience :: Developers', 24 'License :: Freely Distributable', 25 'License :: OSI Approved :: MIT License', 26 'Operating System :: OS Independent', 27 'Programming Language :: Python', 28 'Programming Language :: Python :: 3', 29 'Topic :: Software Development :: Build Tools', 30 'Topic :: Software Development :: Testing', 31 ], 32 install_requires=[ 33 'six' 34 ] 35 ) 36