From e7ef796da53cf0101a62b2412806c1e718d37641 Mon Sep 17 00:00:00 2001 From: Will Chen Date: Mon, 27 Nov 2023 23:28:08 -0800 Subject: [PATCH] Update pyproject.toml with minimal build-system config --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 78a376ef7..9911b6065 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,3 +3,8 @@ # it's imports are used for side effects # Skip error examples since there's intentionally incorrect Python code. extend-exclude = ["optic/testing/index.py", "optic/examples/error*"] + +[build-system] +# Fallback behavior: https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/#fallback-behaviour +requires = ["setuptools>=40.8.0", "wheel"] +build-backend = "setuptools.build_meta:__legacy__"