From f51870b2f910dfc36b50d41eb15d08afeb88fa0a Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Thu, 8 Apr 2021 07:57:38 -0400 Subject: [PATCH] Add minimal pyproject.toml. cuz Tim Peters said so --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b0f0765 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=42"] +build-backend = "setuptools.build_meta"