@@ -10,7 +10,7 @@ build-backend = "hatchling.build"
1010[project ]
1111name = " openvino_model_api"
1212version = " 0.4.0.0"
13- requires-python = " >=3.10 "
13+ requires-python = " >=3.11 "
1414authors = [
1515 {name = " Intel(R) Corporation" },
1616]
@@ -20,11 +20,15 @@ maintainers = [
2020description = " Model API: model wrappers and pipelines for inference with OpenVINO"
2121readme = " README.md"
2222classifiers = [
23- " License :: OSI Approved :: Apache Software License" ,
24- " Programming Language :: Python :: 3.10"
23+ " License :: OSI Approved :: Apache Software License" ,
24+ " Programming Language :: Python :: 3.11" ,
25+ " Programming Language :: Python :: 3.12" ,
26+ " Programming Language :: Python :: 3.13" ,
27+ " Programming Language :: Python :: 3.14" ,
2528]
2629dependencies = [
2730 " numpy>=1.16.6" ,
31+ " onnxruntime" ,
2832 " opencv-python-headless" ,
2933 " openvino>=2025.3" ,
3034 " pillow" ,
@@ -190,6 +194,9 @@ lint.ignore = [
190194lint.fixable = [" ALL" ]
191195lint.unfixable = []
192196
197+ # Allow unused variables when underscore-prefixed.
198+ lint.dummy-variable-rgx = " ^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
199+
193200# Exclude a variety of commonly ignored directories.
194201exclude = [
195202 " .bzr" ,
@@ -217,11 +224,8 @@ exclude = [
217224# Same as Black.
218225line-length = 120
219226
220- # Allow unused variables when underscore-prefixed.
221- lint.dummy-variable-rgx = " ^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
222-
223- # Assume Python 3.10.
224- target-version = " py310"
227+ # Assume Python 3.11.
228+ target-version = " py311"
225229
226230# Allow imports relative to the "src" and "tests" directories.
227231src = [" src" , " tests" ]
0 commit comments