Skip to content

Commit

Permalink
chore: Add Python project configuration
Browse files Browse the repository at this point in the history
- Add Python project configuration file (`pyproject.toml`).
- Add minimum build-time Python dependencies to Python project configuration.
  • Loading branch information
jtrobles-cdd committed Feb 14, 2024
1 parent 4a2991e commit a44f6ed
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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__"

0 comments on commit a44f6ed

Please sign in to comment.