Merge pull request #44 from yarnbasket/feature/setup.py

setup.py so that openface can be used directly as a python library
This commit is contained in:
Brandon Amos 2015-12-22 20:29:31 -05:00
commit b70dcdd0b6
1 changed files with 9 additions and 0 deletions

9
setup.py Normal file
View File

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