diff --git a/pyproject.toml b/pyproject.toml index d2635f0..5d8c05b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,15 +1,15 @@ [build-system] requires = [ - "setuptools>=77.0.1,<83", + "setuptools>=79.0.0,<85", ] build-backend = "setuptools.build_meta" [project] name = "Device-SMI" -version = "0.5.6" +version = "0.5.7" description = "Retrieve gpu, cpu, and npu device info and properties from Linux/MacOS with zero package dependency." readme = { file = "README.md", content-type = "text/markdown" } -requires-python = ">=3" +requires-python = ">=3.10" license = "Apache-2.0" authors = [ { name = "ModelCloud", email = "qubitium@modelcloud.ai" }, diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..0f7ef11 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,13 @@ +[metadata] +name = Device-SMI +version = 0.5.7 +description = Retrieve gpu, cpu, and npu device info and properties from Linux/MacOS with zero package dependency. +long_description = file: README.md +long_description_content_type = text/markdown +author = ModelCloud +author_email = qubitium@modelcloud.ai +url = https://github.com/ModelCloud/Device-SMI/ + +[options] +packages = device_smi +python_requires = >=3.10