From 1ea8d856949d4c2908f1fb0a03e84ea8857395d4 Mon Sep 17 00:00:00 2001 From: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com> Date: Fri, 11 Apr 2025 21:01:00 +0300 Subject: [PATCH] Add classifiers and Python version requirements to pyproject.toml Added classifiers to specify Python versions, license, and OS compatibility. Updated `requires-python` to define the supported Python version range. This improves metadata clarity for package distribution. Signed-off-by: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com> --- pyproject.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index be143f7..57a7ec8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,15 @@ authors = [ ] license = {text = "MIT"} readme = "README.md" +classifiers = [ + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] requires-python = ">=3.9,<4" keywords = [