-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
39 lines (33 loc) · 1.06 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
# -*- coding: utf-8 -*-
import os.path as osp
from setuptools import setup
packages = ["person_vehicle_bike_detection_crossroad", "oak_inference_utils"]
package_data = {
"": ["*"],
}
package_dir = {
"oak_inference_utils": osp.join(
osp.dirname(osp.dirname(osp.abspath(__file__))), "oak_inference_utils",
),
}
extra_requirements = "vis-windows"
setup_kwargs = {
"name": "person_vehicle_bike_detection_crossroad",
"version": "0.2.2",
"description": "MobileNetV2 + SSD-based network is for Person/Vehicle/Bike detection in security surveillance applications.",
"long_description": None,
"author": "",
"author_email": "",
"maintainer": "Xperience.ai",
"maintainer_email": "[email protected]",
"url": None,
"packages": packages,
"package_data": package_data,
"package_dir": package_dir,
"python_requires": ">=3.7,<4.0",
"install_requires": [
"depthai~=2.4.0",
f"modelplace-api[{extra_requirements}]@https://github.com/opencv-ai/modelplace-api/archive/v0.4.10.zip",
],
}
setup(**setup_kwargs)