From f99a85975b522cadb33a4c5136084e468660fed6 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Thu, 20 Feb 2025 14:40:23 +0200 Subject: [PATCH] Replace deprecated classifier with licence expression (PEP 639) --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 10bed27..8e38e85 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ build-backend = "hatchling.build" requires = [ "hatch-vcs", - "hatchling", + "hatchling>=1.27", ] [project] @@ -16,14 +16,14 @@ keywords = [ "statistics", "stats", ] -license = { text = "MIT" } +license = "MIT" +license-files = [ "LICENSE.txt" ] authors = [ { name = "Hugo van Kemenade" } ] requires-python = ">=3.9" classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.9",