From a35301341c71d354b2553ae3dabc5262be521756 Mon Sep 17 00:00:00 2001 From: Joseph Perez Date: Tue, 1 Oct 2024 09:13:52 +0200 Subject: [PATCH] fix: fix project classifiers syntax --- pyproject.toml | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8d751f30..48bb7475 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,19 +9,17 @@ authors = [{ name = "Joseph Perez", email = "joperez@hotmail.fr" }] license = { text = "MIT" } description = "JSON (de)serialization, GraphQL and JSON schema generation using Python typing." readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" classifiers = [ - "Development Status == 4 - Beta", - "Intended Audience == Developers", - "License == OSI Approved == MIT License", - "Programming Language == Python == 3.7", - "Programming Language == Python == 3.8", - "Programming Language == Python == 3.9", - "Programming Language == Python == 3.10", - "Programming Language == Python == 3.11", - "Programming Language == Python == 3.12", - "Programming Language == Python == 3.13", - "Topic == Software Development == Libraries == Python Modules", + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Topic :: Software Development :: Libraries :: Python Modules", ] [project.urls]