From aed71c30f86f5b929e735e17a36e838b5ee527ec Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Thu, 3 Sep 2020 11:21:52 +0200 Subject: [PATCH 1/3] No need to maintain License and Python version classifiers. Poetry takes care of it: https://python-poetry.org/docs/pyproject/#classifiers --- pyproject.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ba0573fb..0e920513 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,12 +15,7 @@ classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Framework :: Pelican", - "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: OS Independent", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules", From 30c9f6bb523e291f336932de063d60e4b40550aa Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Thu, 3 Sep 2020 11:30:11 +0200 Subject: [PATCH 2/3] Refine classification. --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0e920513..d766400e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,8 +17,11 @@ classifiers = [ "Framework :: Pelican", "Operating System :: OS Independent", "Programming Language :: Python :: Implementation :: CPython", - "Topic :: Internet :: WWW/HTTP", + "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System", + "Topic :: Internet :: WWW/HTTP :: Site Management", "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Text Processing :: Markup :: Markdown", + "Topic :: Text Processing :: Markup :: HTML", ] [tool.poetry.urls] From 8fffcbef7af4d6e6f8fa07257e562cde10fe9f15 Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Fri, 4 Sep 2020 13:04:50 +0200 Subject: [PATCH 3/3] Add new reStructuredText classifier. Just been added to the canonical list in: https://github.com/pypa/trove-classifiers/pull/46 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d766400e..1cf84312 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Markup :: Markdown", "Topic :: Text Processing :: Markup :: HTML", + "Topic :: Text Processing :: Markup :: reStructuredText", ] [tool.poetry.urls]