Set version to 0.2

Tensorflow still can't be imported on Windows, but is shown by `pip show`
This commit is contained in:
slashtechno 2024-03-03 18:03:25 -06:00
parent 030b27ba9d
commit 0b224cce31
Signed by: slashtechno
GPG Key ID: 8EC1D9D9286C2B17
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "wyzely-detect" name = "wyzely-detect"
version = "0.1.1" version = "0.2"
description = "Recognize faces/objects in a video stream (from a webcam or a security camera) and send notifications to your devices" description = "Recognize faces/objects in a video stream (from a webcam or a security camera) and send notifications to your devices"
authors = ["slashtechno <77907286+slashtechno@users.noreply.github.com>"] authors = ["slashtechno <77907286+slashtechno@users.noreply.github.com>"]
repository = "https://github.com/slashtechno/wyzely-detect" repository = "https://github.com/slashtechno/wyzely-detect"

View File

@ -95,6 +95,7 @@ def set_argparse():
"--ntfy-url", "--ntfy-url",
default=os.environ["NTFY_URL"] default=os.environ["NTFY_URL"]
if "NTFY_URL" in os.environ and os.environ["NTFY_URL"] != "" if "NTFY_URL" in os.environ and os.environ["NTFY_URL"] != ""
# This is None but there is a default set in notify.py
else None, else None,
type=str, type=str,
help="The URL to send notifications to", help="The URL to send notifications to",