From 512438fee630cbe155f81aca3e96c8009ac04e63 Mon Sep 17 00:00:00 2001 From: Lucian Buzzo Date: Thu, 11 Sep 2025 19:20:17 +0100 Subject: [PATCH] feat: enhance metadata in pyproject.toml with authors, license, and classifiers --- pyproject.toml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4c0b3ce..e54ab77 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,31 @@ build-backend = "setuptools.build_meta" name = "types-nameparser" version = "0.2.0" description = "Typing stubs for the nameparser library" -classifiers = ["Typing :: Stubs Only"] +readme = "README.md" +requires-python = ">=3.8" +license = {text = "MIT"} +authors = [ + {name = "Lucian Buzzo", email = "lucian.buzzo@gmail.com"} +] +maintainers = [ + {name = "Lucian Buzzo", email = "lucian.buzzo@gmail.com"} +] +keywords = ["typing", "stubs", "nameparser", "type-hints"] +classifiers = [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + "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", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Software Development :: Quality Assurance", + "Typing :: Stubs Only", +] [tool.setuptools] packages = ["nameparser_stubs"]