mirror of
https://github.com/anrieff/libcpuid
synced 2024-11-10 22:59:13 +00:00
40e2d5fcb6
The bindings are implemented via python-cffi and cover all current functionality of the library. They do not provide a 1-to-1 mapping of the functionality, but a more "Pythonic" API instead. When new functionality is added to the libcpuid library in the future, the changes must be manually added to the bindings in order to appear in the Python interface. However, if only a C enum is extended, the changes will be automatically reflected in the Python interface.
12 lines
341 B
TOML
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"
|