openface/setup.py

10 lines
304 B
Python
Raw Normal View History

2015-10-31 00:34:09 +08:00
from distutils.core import setup
2015-10-31 00:47:04 +08:00
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']},
2015-10-31 00:42:49 +08:00
)