From 73027f143881856cd844070e30ffade0b0ac26f1 Mon Sep 17 00:00:00 2001 From: Jared Dillard Date: Thu, 17 Nov 2022 17:25:50 -0800 Subject: [PATCH 1/3] MAINT: Add Sphinx Extension classifier --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index ae870cc..9285b0a 100644 --- a/setup.py +++ b/setup.py @@ -49,6 +49,7 @@ ] }, classifiers=[ + "Framework :: Sphinx :: Extension" "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", From 84dae85bc63771e1d122822560d36e0699cc2ca3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 18 Nov 2022 01:26:17 +0000 Subject: [PATCH 2/3] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9285b0a..5574849 100644 --- a/setup.py +++ b/setup.py @@ -49,8 +49,7 @@ ] }, classifiers=[ - "Framework :: Sphinx :: Extension" - "License :: OSI Approved :: MIT License", + "Framework :: Sphinx :: Extension" "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", From 2d5eaeb1168c1749a7c9812b532a3728777663a7 Mon Sep 17 00:00:00 2001 From: Jared Dillard Date: Thu, 17 Nov 2022 17:30:13 -0800 Subject: [PATCH 3/3] Fix missing comma --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5574849..6fa6fc7 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,8 @@ ] }, classifiers=[ - "Framework :: Sphinx :: Extension" "License :: OSI Approved :: MIT License", + "Framework :: Sphinx :: Extension", + "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8",