=== modified file 'setup.py'
--- old/setup.py	2019-08-31 10:44:24 +0000
+++ new/setup.py	2019-08-31 10:49:36 +0000
@@ -4,7 +4,8 @@
 from distutils.core import setup
 import os.path
 
-description = file(os.path.join(os.path.dirname(__file__), 'README'), 'rb').read()
+with open(os.path.join(os.path.dirname(__file__), 'README'), 'r') as f:
+    description = f.read()
 
 setup(
     name='lptools',
@@ -20,7 +21,7 @@
                                              'templates/recipe-status.html'])],
     packages=['lptools'],
     scripts=glob('bin/*'),
-    classifiers = [
+    classifiers=[
         'Development Status :: 4 - Beta',
         'Intended Audience :: Developers',
         'License :: OSI Approved :: GNU General Public License v3 (GPL3)'

