From 98b2be75f6356a0b44ae9ebfcb3dd34462724151 Mon Sep 17 00:00:00 2001 From: Kaleb Barrett Date: Tue, 10 Feb 2026 20:21:31 -0700 Subject: [PATCH] Bump version of setuptools to use PEP 639 syntax --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f696075..619e7fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,15 @@ [build-system] -requires = ["setuptools>=61.2"] +requires = ["setuptools>=77.0.0"] build-backend = "setuptools.build_meta" [project] name = "find_libpython" authors = [{name = "Takafumi Arakaki"}] maintainers = [{name = "Kaleb Barrett", email = "dev.ktbarrett@gmail.com"}] -license = {text = "MIT"} +license = "MIT" +license-files = [ + "LICENSE", +] description = "Finds the libpython associated with your environment, wherever it may be hiding" classifiers = [ "Programming Language :: Python :: 3",