robocar-oak-camera/pyproject.toml

59 lines
1.2 KiB
TOML
Raw Normal View History

2022-10-19 14:59:15 +00:00
[tool.poetry]
name = "robocar-oak-camera"
version = "0.0.0"
description = "Mqtt gateway for oak-lite device"
authors = ["Cyrille Nofficial <cynoffic@cyrilix.fr>"]
readme = "README.md"
packages = [
{ include = "camera" },
]
[tool.poetry.dependencies]
2022-10-19 17:33:36 +00:00
python = "^3.10"
2022-10-19 14:59:15 +00:00
paho-mqtt = "^1.6.1"
2022-11-02 14:42:18 +00:00
depthai = "^2.19.0"
2022-10-19 14:59:15 +00:00
protobuf3 = "^0.2.1"
google = "^3.0.0"
blobconverter = "^1.3.0"
protobuf = "^4.21.8"
2022-10-26 08:48:13 +00:00
opencv-python-headless = "^4.6.0.66"
robocar-protobuf = {version = "^1.1.2", source = "robocar"}
2022-10-19 14:59:15 +00:00
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
2022-10-21 09:01:38 +00:00
pytest-mock = "^3.10.0"
2022-10-19 14:59:15 +00:00
2022-10-20 13:05:23 +00:00
[tool.poetry.group.dev.dependencies]
pylint = "^2.15.4"
2022-10-27 07:05:00 +00:00
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"
default = false
secondary = false
2022-10-20 13:05:23 +00:00
2022-10-19 14:59:15 +00:00
[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'