From 81554941f90c87d4958ca63f7a86c0323316994b Mon Sep 17 00:00:00 2001 From: Tom Clark <> Date: Thu, 12 Sep 2019 13:15:47 +0100 Subject: [PATCH] STY setup.py to PEP8 --- setup.py | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/setup.py b/setup.py index 4608a05..6b71841 100644 --- a/setup.py +++ b/setup.py @@ -13,20 +13,21 @@ with open('LICENSE') as f: license_text = f.read() -setup(name='twined', - version='0.0.1', - py_modules=[], - install_requires=[], - url='https://www.github.com/octue/twined', - license=license_text, - author='Octue (github: octue)', - description='A library to help digital twins talk to one another.', - long_description=readme_text, - packages=find_packages(exclude=('tests', 'docs')), - classifiers=[ - "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", - "Operating System :: OS Independent", - ], - python_requires='>=3.6', - ) +setup( + name='twined', + version='0.0.1', + py_modules=[], + install_requires=[], + url='https://www.github.com/octue/twined', + license=license_text, + author='Octue (github: octue)', + description='A library to help digital twins talk to one another.', + long_description=readme_text, + packages=find_packages(exclude=('tests', 'docs')), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + python_requires='>=3.6', +)