[tool.poetry] name = "robocar-oak-camera" version = "0.0.0" description = "Mqtt gateway for oak-lite device" authors = ["Cyrille Nofficial "] readme = "README.md" packages = [ { include = "camera" }, ] [tool.poetry.dependencies] python = "^3.12" paho-mqtt = "^1.6" depthai = "^2" protobuf3 = "^0.2.1" google = "^3.0.0" protobuf = "^4.21" opencv-python-headless = "^4.6.0" robocar-protobuf = {version = "^1.5", source = "robocar"} [tool.poetry.group.test.dependencies] pytest = "^7.1.3" pytest-mock = "^3.10.0" [tool.poetry.group.dev.dependencies] pylint = "^2.15.4" mypy = "^0.982" types-paho-mqtt = "^1.6.0.1" types-protobuf = "^3.20.4.2" [[tool.poetry.source]] name = "robocar" url = "https://git.cyrilix.bzh/api/packages/robocars/pypi/simple" priority = "explicit" [build-system] requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"] build-backend = "poetry_dynamic_versioning.backend" [tool.poetry.scripts] rc-oak-camera = 'camera.cli:execute_from_command_line' [tool.poetry-dynamic-versioning] enable = true style = 'semver' vcs = 'git' dirty = true bump = true [tool.mypy] strict = true warn_unused_configs = true plugins = 'numpy.typing.mypy_plugin'