# HG changeset patch # User Björn Ricks # Date 1413814581 -7200 # Node ID 8a3f3427aa15c1b264d10c56b72c51fbe2a4ab6a # Parent fceca608848174028be00d0a05bd59dfd203d3df Fix setup.py and update coding style diff -r fceca6088481 -r 8a3f3427aa15 setup.py --- a/setup.py Thu Oct 16 12:53:04 2014 +0200 +++ b/setup.py Mon Oct 20 16:16:21 2014 +0200 @@ -4,6 +4,7 @@ version = '0.1' + def read(filename): with open(filename, "r") as f: return f.read() @@ -27,5 +28,4 @@ include_package_data=True, zip_safe=True, install_requires=read("requirements.txt").split(), - ], )