2024-03-09 00:56:10 +00:00
|
|
|
[project]
|
2023-10-22 01:59:02 +01:00
|
|
|
name = "wyzely-detect"
|
2024-03-04 02:11:50 +00:00
|
|
|
version = "0.2.1"
|
2023-10-22 15:24:11 +01:00
|
|
|
description = "Recognize faces/objects in a video stream (from a webcam or a security camera) and send notifications to your devices"
|
2024-03-09 00:56:10 +00:00
|
|
|
authors = [{name = "slashtechno", email = "77907286+slashtechno@users.noreply.github.com"}]
|
2023-10-22 22:53:29 +01:00
|
|
|
keywords = ["object-detection", "face-detection", "wyze", "security", "yolov8", "unified-push"]
|
2024-03-09 00:56:10 +00:00
|
|
|
license = {file = "LICENSE"}
|
2023-10-13 23:44:38 +01:00
|
|
|
readme = "README.md"
|
2024-03-09 00:56:10 +00:00
|
|
|
requires-python = ">=3.10, <3.12"
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
"python-dotenv>=1.0.0,<2.0.0",
|
|
|
|
"httpx>=0.25.0,<0.26.0",
|
|
|
|
"opencv-python>=4.8.1.78,<4.9.0",
|
|
|
|
"ultralytics>=8.0.190,<9.0.0",
|
|
|
|
"hjson>=3.1.0,<4.0.0",
|
|
|
|
"numpy>=1.23.2,<2.0.0",
|
|
|
|
"torch>=2.1.0,<2.2.0; extra!='cuda'",
|
|
|
|
"absl-py>=2.1.0,<3.0.0",
|
|
|
|
"tensorflow>=2.13.0,<2.14.0; extra!='cuda'",
|
|
|
|
"tensorflow-macos>=2.13.0,<2.14.0; platform_machine=='arm64'",
|
|
|
|
"tensorflow-intel>=2.13.0,<2.14.0; platform_system=='Windows'",
|
|
|
|
"tensorflow-io-gcs-filesystem<0.32.0; platform_system=='Windows'",
|
|
|
|
"deepface>=0.0.79,<0.1.0",
|
|
|
|
"prettytable>=3.9.0,<4.0.0"
|
2024-03-04 02:11:50 +00:00
|
|
|
]
|
2023-10-14 02:51:16 +01:00
|
|
|
|
2024-03-09 00:56:10 +00:00
|
|
|
[project.optional-dependencies]
|
|
|
|
gpu = [
|
|
|
|
"torch (>=2.1.0,<2.2.0); extra=='cuda'",
|
|
|
|
"tensorflow (>=2.14.0,<2.15.0); extra=='cuda'"
|
|
|
|
]
|
2023-10-13 23:44:38 +01:00
|
|
|
|
2024-03-09 00:56:10 +00:00
|
|
|
[project.dev-dependencies]
|
|
|
|
black = ">=23.9.1,<24.0.0"
|
|
|
|
ruff = ">=0.0.291,<0.1.0"
|
|
|
|
ipykernel = ">=6.25.2,<7.0.0"
|
|
|
|
nbconvert = ">=7.9.2,<8.0.0"
|
2023-10-13 23:44:38 +01:00
|
|
|
|
2024-03-09 00:56:10 +00:00
|
|
|
[project.urls]
|
|
|
|
Repository = "https://github.com/slashtechno/wyzely-detect"
|
2023-10-13 23:44:38 +01:00
|
|
|
|
|
|
|
[build-system]
|
2024-03-09 00:56:10 +00:00
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
2023-10-13 23:44:38 +01:00
|
|
|
|
2024-03-09 00:56:10 +00:00
|
|
|
[tool.rye]
|
|
|
|
managed = true
|
|
|
|
dev-dependencies = []
|
2023-10-14 00:16:55 +01:00
|
|
|
|
2024-03-09 00:56:10 +00:00
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|
2023-10-14 21:46:42 +01:00
|
|
|
|
2024-03-09 00:56:10 +00:00
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["src/rye"]
|