-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
117 lines (104 loc) · 2.61 KB
/
pyproject.toml
File metadata and controls
117 lines (104 loc) · 2.61 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[build-system]
requires = ["setuptools>=80", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "esq"
dynamic = ["version"]
description = "Edge System Qualification (ESQ) package for evaluating and qualifying edge computing systems"
readme = "README.md"
authors = [
{name = "esq"}
]
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"pyyaml>=6.0.2",
"pytest>=9.0.3",
"allure-pytest>=2.14.3",
"pytest-check>=2.5.3",
"rich>=14.0.0",
"tqdm>=4.67.1",
"tomli>=2.2.1",
"matplotlib>=3.10.3",
"psutil>=7.0.0",
"py-cpuinfo>=9.0.0",
"requests>=2.33.1",
"openvino>=2025.4.1",
"docker>=7.1.0",
"pydub>=0.25.1",
"httpx>=0.28.1",
"huggingface-hub>=0.33.4",
"modelscope>=1.33.0",
"datasets>=4.4.2",
"transformers>=5.0.0",
"openvino_tokenizers>=2025.2.0.1",
"Jinja2>=3.1.6",
"ultralytics>=8.3.170",
"kagglehub>=0.3.13",
"py-libnuma>=1.2",
"nncf>=2.17.0",
"timm>=1.0.22",
]
[project.scripts]
esq = "sysagent.cli:main"
[project.entry-points.sysagent]
sysagent_suites = "esq"
sysagent_configs = "esq"
sysagent_telemetry = "esq.utils.telemetry.modules"
[project.entry-points.pytest11]
sysagent_plugin = "sysagent.utils.plugins"
[tool.setuptools.packages.find]
where = ["src"]
include = ["sysagent", "esq"]
[tool.setuptools.package-data]
sysagent = [
"configs/**/*",
"suites/**/*",
"utils/**/*"
]
esq = [
"configs/**/*",
"suites/**/*",
"utils/**/*",
"pyproject.toml"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
version_scheme = "release-branch-semver" # e.g., tag 1.0.0: on main -> 1.1.0.devN+gabcdef
local_scheme = "node-and-date" # include commit hash and date
root = "." # root of the git repo
[tool.ruff]
line-length = 120
target-version = "py310"
exclude = [
".git",
"__pycache__",
".venv",
"venv",
"build",
"dist"
]
[tool.ruff.format]
indent-style = "space"
quote-style = "double"
[tool.ruff.lint]
extend-select = ["E501"]
[tool.sysagent]
github_dependencies = [
{ name = "edge-developer-kit-reference-scripts", url = "https://github.com/intel/edge-developer-kit-reference-scripts.git", ref = "4f05e9a" },
]
[dependency-groups]
dev = [
"ruff>=0.13.1",
]