From 30a1c247b7ee2ec94bbf82e236c36174dc3691b9 Mon Sep 17 00:00:00 2001 From: Ryan Mast Date: Wed, 3 Dec 2025 15:50:41 -0800 Subject: [PATCH] chore(python): update pyproject.toml to use license expression syntax instead of classifiers (#230) Signed-off-by: Ryan Mast --- python/pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 162f4b7..a1f78f1 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -9,7 +9,7 @@ description = "A Python package for interacting with DAPper datasets" authors = [ { name = "Ryan Mast", email = "mast9@llnl.gov" } ] -license = { text = "MIT License" } +license = "MIT" readme = "README.md" requires-python = ">=3.6" dependencies = [ @@ -18,7 +18,6 @@ dependencies = [ ] classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Intended Audience :: Developers", "Intended Audience :: Science/Research",