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 from distutils.core import setup
setup(name='openface', setup(
version='0.1.1', name='openface',
description="Face recognition with Google's FaceNet deep neural network.", version='0.1.1',
url='https://github.com/yarnbasket/openface', description="Face recognition with Google's FaceNet deep neural network.",
packages=['openface', 'openface.alignment'], url='https://github.com/yarnbasket/openface',
package_data={'openface': ['*.lua']}, packages=['openface', 'openface.alignment'],
package_data={'openface': ['*.lua']},
) )