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']}, )