-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (47 loc) · 1.66 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from distutils.core import setup
import os
setup(name='faro',
version='1.0.0',
description='Face Recognition From Oak Ridge.',
author='David Bolme',
author_email='[email protected]',
url='https://github.com/bolme/pyvision',
keywords = ["machine learning", "vision", "image", "face recognition", "deep learning"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
],
long_description = "A computer vision library for python.",
packages=['faro',
'faro.proto',
'faro.face_workers',
],
package_dir = {'': 'src'},
install_requires=[
'opencv-python',
'Pillow',
'numpy',
'scipy',
'scikit-image',
'scikit-learn',
'pyvision-toolkit',
'protobuf',
'grpcio',
'grpcio.tools',
'keras==2.2.0',
'keras_vggface',
'dlib',
],
)
# protobuf grpcio grpcio.tools pyvision_toolkit keras_vggface tensorflow keras==2.2.0 dlib