-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
38 lines (32 loc) · 938 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
34
35
36
37
38
[tool.poetry]
name = "intel-ai-safety-explainer-cam-pytorch"
version = "1.3.0"
description = ""
authors = ["IntelAI <[email protected]>"]
readme = "README.md"
packages = [
{include = "intel_ai_safety", from="."},
]
[tool.poetry.dependencies]
python = ">=3.10, <3.12"
intel-ai-safety-explainer = {version = "*"}
grad-cam = "1.5.4"
numpy = "1.26.4"
opencv-python = "4.11.0.86"
torch = {version = "2.5.1", source = "pytorch-cpu"}
[tool.poetry.group.local.dependencies]
intel-ai-safety-explainer = {path = "../../../explainer"}
intel-ai-safety = {path = "../../.."}
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "8.3.5"
pytest-cov = "6.0.0"
torchvision = {version = "0.20.1", source = "pytorch-cpu"}
[[tool.poetry.source]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[build-system]
requires = ["poetry"]
build-backend = "poetry.core.masonry.api"