From a44f6ed7cb9248eec0ed3f4ffa9f19f0c32ca138 Mon Sep 17 00:00:00 2001 From: Jose Tomas Robles Hahn Date: Wed, 14 Feb 2024 12:09:07 -0300 Subject: [PATCH] chore: Add Python project configuration - Add Python project configuration file (`pyproject.toml`). - Add minimum build-time Python dependencies to Python project configuration. --- pyproject.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7f4abe5 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +# Python Project Configuration +# +# Documentation: +# - https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/ +# - https://github.com/pypa/pip/blob/23.2.1/docs/html/reference/build-system/pyproject-toml.md +# - https://packaging.python.org/en/latest/specifications/declaring-project-metadata/ +# - https://github.com/pypa/packaging.python.org/blob/df2c8b22/source/specifications/declaring-project-metadata.rst + +[build-system] +requires = [ + "setuptools==68.0.0", + "wheel==0.41.2", +] +build-backend = "setuptools.build_meta:__legacy__"