Set version to 0.2
Tensorflow still can't be imported on Windows, but is shown by `pip show`
This commit is contained in:
parent
030b27ba9d
commit
0b224cce31
|
@ -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"
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue