From 55e7dfb27805f46ec2afc5b18afa0c57ba73d470 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Fri, 26 Aug 2022 04:09:48 -0700 Subject: [PATCH] Add classifiers --- pyproject.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 93f3b70..fcd0397 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,9 +9,17 @@ requires-python = ">=3.8" authors = [{name = "Scientific Python Developers"}] readme = "README.md" license = {file = "LICENSE.md"} -classifiers = ["License :: OSI Approved :: BSD License"] +classifiers = [ + "Development Status :: 4 - Beta", + "License :: OSI Approved :: BSD License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", +] dynamic = ["description"] + [project.optional-dependencies] test = ["pytest >= 7"] lint = ["pre-commit >= 2.20"]