Skip to content

Commit 46c4817

Browse files
author
Brad Kinnard
committed
fix: add Python version classifiers to pyproject.toml
The shields.io pypi/pyversions badge reads 'Programming Language :: Python' classifiers from PyPI. Without them it displays 'python: missing'. Adds classifiers for Python 3.10–3.13 matching requires-python.
1 parent 75a6d33 commit 46c4817

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,18 @@ dependencies = [
1717
"pyyaml>=6.0",
1818
]
1919

20+
classifiers = [
21+
"Development Status :: 5 - Production/Stable",
22+
"Intended Audience :: Developers",
23+
"License :: OSI Approved :: MIT License",
24+
"Programming Language :: Python :: 3",
25+
"Programming Language :: Python :: 3.10",
26+
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13",
29+
"Topic :: Software Development :: Quality Assurance",
30+
]
31+
2032
[project.optional-dependencies]
2133
dev = [
2234
"mypy>=1.10",

0 commit comments

Comments
 (0)