diff mbox series

[libgpiod,v2,2/2] bindings: python: add pyproject.toml, pep 518

Message ID 20231012210228.101513-3-phil@gadgetoid.com
State New
Headers show
Series bindings: python: optionally include (...) | expand

Commit Message

Phil Howard Oct. 12, 2023, 9:02 p.m. UTC
Add pyproject.toml to prevent spurious deprecation warnings from pip.

Signed-off-by: Phil Howard <phil@gadgetoid.com>
---
 bindings/python/pyproject.toml | 5 +++++
 1 file changed, 5 insertions(+)
 create mode 100644 bindings/python/pyproject.toml
diff mbox series

Patch

diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml
new file mode 100644
index 0000000..fcf6bbe
--- /dev/null
+++ b/bindings/python/pyproject.toml
@@ -0,0 +1,5 @@ 
+# SPDX-License-Identifier: GPL-2.0-or-later
+# SPDX-FileCopyrightText: 2023 Phil Howard <phil@gadgetoid.com>
+
+[build-system]
+requires = ["setuptools", "wheel"]