-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 906 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
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
setup(
name="jarvis",
version="0.1.0",
packages=find_packages(),
include_package_data=True,
package_data={
'jarvis.face': ['cascades/*.xml'],
},
install_requires=[
'opencv-contrib-python>=4.0.0',
'google-auth>=2.3.0',
'google-cloud-core>=2.0.0',
'google-cloud-speech>=2.0.0',
'pyaudio>=0.2.11',
'scipy>=1.7.0',
'pillow>=8.0.0',
'matplotlib>=3.4.0',
'numpy>=1.20.0',
'PyQt5>=5.15.0',
],
entry_points={
'console_scripts': [
'jarvis=jarvis:main',
],
},
author="Cloud Artisan",
description="Computer vision and face detection application",
keywords="computer vision, face detection, video processing",
url="https://github.com/cloudartisan/jarvis",
)