forked from openvinotoolkit/openvino_xai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.49 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
# 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.0.0rc0"
dependencies = [
"openvino-dev==2023.2",
"opencv-python",
"numpy",
"tqdm",
]
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 :: MIT Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-csv",
"pre-commit==3.7.0",
"addict",
]
val = [
"timm==0.9.5",
"onnx==1.14.1",
]
[project.urls]
Homepage = "https://github.com/openvinotoolkit/openvino_xai"
Documentation = "https://curly-couscous-ovjvm29.pages.github.io/"
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",
]