From b6fe7168c95f4b0320912ba38874ffaf5acb3a65 Mon Sep 17 00:00:00 2001 From: PacNPal <183241239+pacnpal@users.noreply.github.com> Date: Tue, 19 Nov 2024 09:40:25 -0500 Subject: [PATCH] chore: enhance package classifiers Added classifiers for: - Environment (Console) - Intended Audience (System Administrators) - Operating System (OS Independent) - Python Implementation (CPython) - Natural Language (English) - Additional Topics (Installation/Setup, Distribution) - Framework (pip) --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/setup.py b/setup.py index 3b1f197..e7a1ca6 100644 --- a/setup.py +++ b/setup.py @@ -21,13 +21,23 @@ setup( url="https://github.com/PacNPal/pip-add", classifiers=[ "Development Status :: 4 - Beta", + "Environment :: Console", "Intended Audience :: Developers", + "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", + "Natural Language :: English", + "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: System :: Installation/Setup", + "Topic :: System :: Software Distribution", + "Topic :: System :: Systems Administration", + "Topic :: Utilities", + "Framework :: pip", ], python_requires=">=3.11", )