Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion bindings/sysman/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pyzes"
version = "0.1.1"
dynamic = ["version"]
description = "Python bindings for Intel Level-Zero Driver Library (Sysman API)"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -36,6 +36,9 @@ package-dir = {"" = "source"}
py-modules = ["pyzes"]
packages = ["examples"]

[tool.setuptools.dynamic]
version = {attr = "pyzes.__version__"}

[tool.coverage.run]
omit = [
"source/examples/*",
Expand Down
2 changes: 0 additions & 2 deletions bindings/sysman/python/source/examples/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,3 @@

These examples show how to use the pyzes module for Intel Level-Zero System Management.
"""

__version__ = "0.1.0"
3 changes: 3 additions & 0 deletions bindings/sysman/python/source/pyzes.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
# Python bindings for the libze_intel_gpu.so / ze_intel_gpu.dll library
##

__version__ = "0.1.2"
__build__ = 1

import sys
import threading
from ctypes import *
Expand Down
Loading