-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (23 loc) · 796 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
__version__ = '0.1.0-alpha.1'
setup(
name='face_identifier',
version=__version__,
description='Recognition implement with MTCNN and VGGFace',
url='https://github.com/Uysim/face-identifier',
author='Uysim Ty',
author_email="[email protected]",
license='MIT',
keywords=['face detection', 'face match', 'mtcnn', 'tensorflow', 'keras', 'vggface', 'deeplearning'],
packages=find_packages(exclude=["test", "image",".venv", "dist"]),
zip_safe=False,
install_requires=[
'tensorflow<2.13.0', # https://github.com/rcmalli/keras-vggface/issues/97
'mtcnn>=0.1.0',
'keras_applications>=1.0.8',
],
extras_require={
"tf": ["tensorflow"],
"tf_gpu": ["tensorflow-gpu"],
}
)