-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.18 KB
/
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
34
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "framegrab"
version = "0.9.1"
description = "Easily grab frames from cameras or streams"
authors = ["Groundlight <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://www.groundlight.ai/"
repository = "https://github.com/groundlight/framegrab"
[tool.poetry.dependencies]
python = "^3.9"
opencv-python = "^4.4.0.46"
pyyaml = "^6.0.2"
imgcat = "^0.5.0"
click = "^8.1.6"
ascii-magic = "^2.3.0"
wsdiscovery = "^2.0.0"
onvif-zeep = "^0.2.12"
pydantic = "^2.9.2"
pypylon = { version = ">=3.0.0", optional = true }
pyrealsense2 = { version = "^2.55.1.6486", optional = true }
picamera2 = { version = ">=0.3.21", optional = true }
streamlink = { version = "^7.0.0", optional = true }
[tool.poetry.extras]
basler = ["pypylon"]
realsense = ["pyrealsense2"]
raspberrypi = ["picamera2"]
youtube = ["streamlink"]
all = ["pypylon", "pyrealsense2", "picamera2", "streamlink"]
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
pytest = "^8.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# This defines the CLI command `framegrab` and its python entrypoint
framegrab = "framegrab.cli.main:climain"