2
2
from setuptools import setup , find_packages
3
3
import os
4
4
5
+
5
6
def read (fname ):
6
- return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
7
+ return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
7
8
8
- setup (name = 'junit-xml' ,
9
- author = 'Brian Beyer' ,
10
- author_email = 'brian@kyr.us' ,
11
- url = 'https://github.com/kyrus/python-junit-xml' ,
12
- license = 'MIT' ,
13
- packages = find_packages (),
14
- test_suite = "test_junit_xml" ,
15
- description = 'Creates JUnit XML test result documents that can be read by tools such as Jenkins' ,
16
- long_description = read ('README.rst' ),
17
- version = "1.3" ,
18
- classifiers = [
9
+ setup (
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.3" ,
21
+ classifiers = [
19
22
'Development Status :: 5 - Production/Stable' ,
20
23
'Intended Audience :: Developers' ,
21
24
'License :: Freely Distributable' ,
@@ -25,9 +28,8 @@ def read(fname):
25
28
'Programming Language :: Python :: 3' ,
26
29
'Topic :: Software Development :: Build Tools' ,
27
30
'Topic :: Software Development :: Testing' ,
28
- ],
31
+ ],
29
32
install_requires = [
30
33
'six'
31
34
]
32
35
)
33
-
0 commit comments