-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (28 loc) · 953 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[tool.poetry]
name = "machine_vision_acquisition_python"
version = "0.5.0"
description = "PFR library for machine vision interfacing"
authors = ["Manu Lange <manu.lange@plantandfood.co.nz>"]
packages = [
{ include = "machine_vision_acquisition_python", from = "src" },
]
[tool.poetry.scripts]
mva_process = 'machine_vision_acquisition_python.process.cli:cli'
mva_capture = 'machine_vision_acquisition_python.capture.cli:cli'
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.1.2"
pydantic = "^1.9.1"
Flask = "^2.1.2"
sshkeyboard = "^2.3.1"
pandas = "^1.4.2"
openpyxl = "^3.0.10"
opencv-python-headless = "^4.5"
high-res-stereo = {git = "https://github.com/nznobody/high-res-stereo", optional = true}
[tool.poetry.extras]
stereo = ["torch", "torchvision", "high-res-stereo", "pyntcloud"]
[tool.poetry.dev-dependencies]
black = {version = "^22.3.0"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"