From 7a3c5e45459f2d6358097801973608f98867d524 Mon Sep 17 00:00:00 2001 From: John Gerrard Holland Date: Wed, 8 Nov 2023 13:51:39 -0500 Subject: [PATCH] chore: add project classifiers including supported python versions --- pyproject.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d4fdefb6..16c2f39a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,6 +10,25 @@ license = {file = "LICENSE"} requires-python = ">=3.8,<4" dynamic = ["version"] +classifiers = [ # Optional + "Development Status :: 5 - Production/Stable", + + "Intended Audience :: Developers", + "Intended Audience :: Science/Research", + + "License :: OSI Approved :: MIT License", + + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3 :: Only", + + "Topic :: Scientific/Engineering :: Artificial Intelligence" +] + dependencies = [ "numpy", "matplotlib",