From 6720f7e8822ccbb45659022b2e9d71b518bc067d Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Mon, 27 Jul 2026 06:27:03 -0400 Subject: [PATCH] add Trove classifiers for PyPi these may have been lost in the transition to pyproject.toml. --- changelog.md | 5 +++++ pyproject.toml | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/changelog.md b/changelog.md index 08e4440d..5116f29f 100644 --- a/changelog.md +++ b/changelog.md @@ -6,6 +6,11 @@ Features * Render tab literals as four spaces in the REPL. +Internal +--------- +* Add Trove classifiers for PyPi. + + 2.7.0 (2026/07/25) ============== diff --git a/pyproject.toml b/pyproject.toml index 79cb92ea..e0bf8807 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,6 +6,23 @@ readme = "README.md" requires-python = ">=3.10" license = "BSD-3-Clause" authors = [{ name = "Mycli Core Team" }] +classifiers = [ + 'Environment :: Console', + 'Intended Audience :: Developers', + 'Intended Audience :: Science/Research', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14', + 'Programming Language :: SQL', + 'Topic :: Database', + 'Topic :: Database :: Front-Ends', + 'Topic :: Software Development', +] dependencies = [ "click ~= 8.4.2",