linting errors, try #2

This commit is contained in:
Phillip Schanely 2015-10-30 12:47:04 -04:00
parent f7baa6fa9a
commit fda0496fdc
1 changed files with 7 additions and 6 deletions

View File

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