Skip to content

Commit 72aa55f

Browse files
Florian PreinstorferFlorian Preinstorfer
Florian Preinstorfer
authored and
Florian Preinstorfer
committed
Make setup.py flake8 clean.
1 parent 1e6679e commit 72aa55f

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

setup.py

+16-14
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,23 @@
22
from setuptools import setup, find_packages
33
import os
44

5+
56
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()
78

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=[
1922
'Development Status :: 5 - Production/Stable',
2023
'Intended Audience :: Developers',
2124
'License :: Freely Distributable',
@@ -25,9 +28,8 @@ def read(fname):
2528
'Programming Language :: Python :: 3',
2629
'Topic :: Software Development :: Build Tools',
2730
'Topic :: Software Development :: Testing',
28-
],
31+
],
2932
install_requires=[
3033
'six'
3134
]
3235
)
33-

0 commit comments

Comments
 (0)