1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2025-10-03 11:01:30 +00:00
libcpuid/python/pyproject.toml
Yaakov Selkowitz ba398f85a3 python: do not require wheel for building
Setuptools 70.1+ does not need wheel at all; older versions would fetch wheel when building wheels (but not sdists).
2025-07-26 10:37:31 +02:00

12 lines
341 B
TOML

[build-system]
requires = ["setuptools", "cffi"]
build-backend = "setuptools.build_meta"
[project]
name = "libcpuid"
version = "0.1.0"
readme = "README.md"
dependencies = ["cffi"]
license = {text = "BSD-3-Clause"}
authors = [{name = "Pavol Žáčik", email = "zacikpa@gmail.com"}]
description = "Python bindings for the libcpuid C library"