From fda0496fdc06e31c722a4c6c534588c03d315218 Mon Sep 17 00:00:00 2001 From: Phillip Schanely Date: Fri, 30 Oct 2015 12:47:04 -0400 Subject: [PATCH] linting errors, try #2 --- setup.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 85dc3e0..2c89ddf 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,9 @@ from distutils.core import setup -setup(name='openface', - version='0.1.1', - description="Face recognition with Google's FaceNet deep neural network.", - url='https://github.com/yarnbasket/openface', - packages=['openface', 'openface.alignment'], - package_data={'openface': ['*.lua']}, +setup( + name='openface', + version='0.1.1', + description="Face recognition with Google's FaceNet deep neural network.", + url='https://github.com/yarnbasket/openface', + packages=['openface', 'openface.alignment'], + package_data={'openface': ['*.lua']}, )