From 5c24ea7ea092ebda107c9e2fff1be4e2a97d9c74 Mon Sep 17 00:00:00 2001 From: vsandeepsrivastav Date: Wed, 14 Dec 2016 16:20:17 +0530 Subject: [PATCH] =?UTF-8?q?=C2=A0re=20was=20imported=20but=20never=20used?= =?UTF-8?q?=20so=20removed=20the=20same,=20line=2020=20in=20the=20original?= =?UTF-8?q?=20file=20needed=20two=20blank=20lines=20before=20function=20de?= =?UTF-8?q?finition=20added=20the=20same=20and=20extra=20spaces=20around?= =?UTF-8?q?=20the=20operator=20in=20line=2034=20removed=20the=20same.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e270c91..e124bfe 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,6 @@ #!/usr/bin/env python import os -import re import sys from codecs import open @@ -17,6 +16,7 @@ if sys.argv[-1] == 'publish': requires = ['SQLAlchemy', 'tablib', 'docopt'] version = '0.5.0' + def read(f): return open(f, encoding='utf-8').read() @@ -31,7 +31,7 @@ setup( py_modules=['records'], package_data={'': ['LICENSE']}, include_package_data=True, - entry_points = { + entry_points={ 'console_scripts': ['records=records:cli'], }, install_requires=requires,