42 lines
943 B
TOML
42 lines
943 B
TOML
[tool.poetry]
|
|
name = "set-detect-notify"
|
|
version = "0.1.0"
|
|
description = "Detect all the things"
|
|
authors = ["slashtechno <77907286+slashtechno@users.noreply.github.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
packages = [{include = "set-detect-notify"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
# python = "^3.10"
|
|
python = ">=3.10, <3.12"
|
|
python-dotenv = "^1.0.0"
|
|
httpx = "^0.25.0"
|
|
opencv-python = "^4.8.1.78"
|
|
ultralytics = "^8.0.190"
|
|
hjson = "^3.1.0"
|
|
numpy = "^1.23.2"
|
|
|
|
# https://github.com/python-poetry/poetry/issues/6409
|
|
torch = "^2.1.0"
|
|
|
|
tensorflow-io-gcs-filesystem = "0.31.0"
|
|
deepface = "^0.0.79"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^23.9.1"
|
|
ruff = "^0.0.291"
|
|
ipykernel = "^6.25.2"
|
|
nbconvert = "^7.9.2"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
[tool.ruff]
|
|
# More than the default (88) of `black` to make comments less of a headache
|
|
line-length = 120
|