From 706219657186ca841320e126e23bef517fc2456d Mon Sep 17 00:00:00 2001 From: elhoim Date: Mon, 31 Aug 2026 00:12:40 +0000 Subject: [PATCH] Add PyPI classifiers to pyproject.toml The [project] table declared no classifiers, so the package doesn't surface under PyPI's classifier-based filters/search facets. Add Development Status, Intended Audience, License, and Programming Language classifiers matching the package's supported Python versions and AGPLv3 license. --- pyproject.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 907ad3b..f6d8c60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,15 @@ license = { file = "LICENSE" } authors = [ { name = "misp-modules-cli contributors" } ] +classifiers = [ + "Development Status :: 4 - Beta", + "Intended Audience :: Information Technology", + "License :: OSI Approved :: GNU Affero General Public License v3", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", +] dependencies = [ "requests>=2.31.0" ]