diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2019-03-21 23:35:24 +0100 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2019-03-21 23:36:34 +0100 |
| commit | b13d3257d27d77cda32d15c0f4531e3cc10c2edd (patch) | |
| tree | 7702914f073c6f37f21a087c318a5c0bcd0eebd7 | |
| parent | 8c7a9d1e8dc8d3912cb5fc21595cbc49d36375e8 (diff) | |
setup: Style nits
| -rw-r--r-- | setup.py | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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', |
