-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
92 lines (83 loc) · 1.81 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "openvino_xai"
version = "1.2.0rc0"
dependencies = [
"openvino-dev==2024.4",
"opencv-python",
"scipy",
"numpy==1.*",
"tqdm",
"matplotlib",
]
requires-python = ">=3.10"
authors = [
{name = "Intel(R) Corporation"},
]
maintainers = [
{name = "Intel(R) Corporation"},
]
description = "OpenVINO™ Explainable AI (XAI) Toolkit: Visual Explanation for OpenVINO Models"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["openvino-toolkit", "explainable-ai", "xai", "cnn", "transformer", "black-box", "white-box"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-csv",
"pytest-mock",
"pytest-xdist",
"pre-commit==3.7.0",
"addict",
"timm==0.9.5",
"onnx",
"onnxruntime",
"pandas",
"py-cpuinfo",
"openpyxl",
"torchvision",
"pycocotools",
]
doc = [
"furo",
"myst-parser",
"pydata-sphinx-theme",
"sphinx",
"sphinx-autoapi",
"sphinx-copybutton",
"sphinx-design",
"sphinx-panels",
"sphinx-tabs",
"sphinxemoji",
]
[project.urls]
Homepage = "https://github.com/openvinotoolkit/openvino_xai"
Documentation = "https://openvinotoolkit.github.io/openvino_xai/"
Repository = "https://github.com/openvinotoolkit/openvino_xai.git"
[tool.setuptools.packages.find]
include = ["openvino_xai*"]
[tool.black]
line-length = 120
[tool.coverage.paths]
source = [
"openvino_xai",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
]
[tool.coverage.run]
omit = [
"**/__init__.py",
]