From 845d5837e3d7d481a9567a33c79da87bb800f636 Mon Sep 17 00:00:00 2001 From: Hugh Wimberly Date: Sat, 29 Apr 2023 06:08:40 -0700 Subject: [PATCH] Add build system info to comply with PEP 518 (#33) --- 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..fed528d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta"