-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.17 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
[tool.poetry]
name = "argussight"
version = "0.1.0"
description = "An addition to MXCuBEWeb enabling simultaneous video streaming and distributed computer vision tasks."
authors = ["Yan Walesch <<[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mxcube/argussight"
homepage = "https://github.com/mxcube/argussight"
documentation = "https://mxcube.github.io/argussight/"
keywords = ["MXCuBEWeb", "video streaming", "computer vision", "multistream", "process management"]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
numpy = "^1.26.0"
opencv-python = "4.10.0.84"
pillow = "<=10.4.0, >=9.4.0"
pydantic = ">=2.8.2,<2.9.0"
redis = "4.6.0"
pyyaml = "^6.0.1"
grpcio = "^1.38.0"
grpcio-tools = "^1.38.0"
python-levenshtein = "^0.25.1"
Flask = "^3.0.3"
requests = "^2.32.3"
websocket-client = "^1.8.0"
mxcube-video-streamer = ">=1.6.0"
[tool.poetry.scripts]
argussight = "argussight.main:run"
stream-layer = "argussight.streamsproxy:run"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.8.0"
isort = "^5.13.2"
mkdocs = "^1.6.1"
mkdocs-macros-plugin = "^1.3.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"