From b13d3257d27d77cda32d15c0f4531e3cc10c2edd Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Thu, 21 Mar 2019 23:35:24 +0100 Subject: setup: Style nits --- setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index e09221b..f5ed222 100644 --- a/setup.py +++ b/setup.py @@ -2,6 +2,7 @@ import io import os import setuptools + setuptools.setup( name="kconfiglib", # MAJOR.MINOR.PATCH, per http://semver.org @@ -13,9 +14,10 @@ setuptools.setup( # # io.open() has the 'encoding' parameter on both Python 2 and 3. open() # doesn't have it on Python 2. This lets us use the same code for both. - long_description= - io.open(os.path.join(os.path.dirname(__file__), "README.rst"), - encoding="utf-8").read(), + long_description=io.open( + os.path.join(os.path.dirname(__file__), "README.rst"), + encoding="utf-8" + ).read(), url="https://github.com/ulfalizer/Kconfiglib", author='Ulf "Ulfalizer" Magnusson', -- cgit v1.2.3