-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (37 loc) · 1.18 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
import io
import os
from setuptools import setup, find_packages
CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(CURRENT_DIR, "README.md"), "r", encoding="utf-8") as f:
README = f.read()
with io.open(os.path.join(CURRENT_DIR, "requirements.txt"), "r", encoding="utf-8") as f:
DEPENDENCIES = [line.strip() for line in f.readlines()]
setup(
name="housecarl",
version="0.0.1",
packages=find_packages(include=["housecarl*"]),
install_requires=DEPENDENCIES,
author="Robert Reed",
author_email="robert.mc.reed@gmail.com",
description="Carl will monitor a video feed and send you push notifications if events are detected.",
long_description=README,
long_description_content_type="text/markdown",
include_package_data=True,
package_data={'': ['config.default.json']},
keywords=[
"Wyze",
"OpenCV",
"video",
"person detection",
"object detection",
"yolo",
"mobilenet",
"pushover"
"Google Coral",
"edge tpu",
"Raspberry Pi"
],
python_requires=">=3.6",
scripts=["bin/carl"],
url="https://github.com/RobertMcReed/housecarl"
)