Addon-Maintainers: Use "Framework :: Plone :: Addon" classifier

Dear Maintainers of Plone Add-ons, please add the classifier to your addon in order to make it easier to filter

Framework :: Plone :: Addon

Here a search on PyPI for packages using the classifier:

Also, do not forget the supported Plone and Python versions as well.

Usage: In your setup.py add it to the classifiers list:

setup(
    ...
    classifiers=[
        "Environment :: Web Environment",
        "Framework :: Plone :: 5.1",
        "Framework :: Plone :: 5.2",
        "Framework :: Plone :: Addon",
        "Framework :: Plone",
        "Framework :: Zope :: 2",
        "Framework :: Zope :: 4",
        "Framework :: Zope",
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3.6",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python",
        ...
    ],
...

Example at https://github.com/collective/pas.plugins.ldap/blob/master/setup.py#L25
or if you already use setup.cfg for your metadata put it in there.

Is this a new classifier? If so, it should be used in https://github.com/plone/ploneorg.addonlisting...

1 Like
1 Like