summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2019-03-21 23:35:24 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2019-03-21 23:36:34 +0100
commitb13d3257d27d77cda32d15c0f4531e3cc10c2edd (patch)
tree7702914f073c6f37f21a087c318a5c0bcd0eebd7
parent8c7a9d1e8dc8d3912cb5fc21595cbc49d36375e8 (diff)
setup: Style nits
-rw-r--r--setup.py8
1 files 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',