Trove Classifiers

2026.1.14.14 · active · verified Sat Mar 28

Provides the canonical set of classifiers for PyPI, enabling validation and categorization of Python projects. Current version: 2026.1.14.14. Maintained with regular updates to reflect the latest standards and additions in Python packaging.

Warnings

Install

Imports

Quickstart

Example usage to validate a classifier.

from trove_classifiers import classifiers

# Check if a classifier is valid
if 'License :: OSI Approved' in classifiers:
    print('Valid classifier')
else:
    print('Invalid classifier')

view raw JSON →