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:
commit
b70dcdd0b6
|
@ -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']},
|
||||
)
|
Loading…
Reference in New Issue