-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (24 loc) · 731 Bytes
/
setup.py
File metadata and controls
24 lines (24 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(name='face-rec-tools',
version='1.0.0',
description='Face Recognition Tools',
author='Alexander Bushnev',
author_email='Alexander@Bushnev.ru',
license='GNU General Public License v3.0',
packages=['face_rec_tools'],
package_data={'face_rec_tools': ['cfg/*', 'web/*']},
python_requires='>=3.6',
install_requires=[
'dlib',
'numpy',
'piexif',
'pillow',
'opencv-python',
'face_alignment',
'face_recognition'
],
scripts=['face-rec-cli',
'face-rec-server',
'face-rec-patterns',
'face-rec-plexsync'],
zip_safe=False)