openface/setup.py

10 lines
305 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.",
2015-12-23 09:30:49 +08:00
url='https://github.com/cmusatyalab/openface',
2015-10-31 00:47:04 +08:00
packages=['openface', 'openface.alignment'],
package_data={'openface': ['*.lua']},
2015-10-31 00:42:49 +08:00
)