From d19ea751f867b11f4882fd82158f7e49815d917e Mon Sep 17 00:00:00 2001 From: svenrdz Date: Tue, 9 Jul 2024 16:19:07 +0200 Subject: [PATCH] update license format (still 3-Clause BSD!) & add classifiers --- pyproject.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4124ed2..1d84da5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,9 +5,15 @@ build-backend = "pdm.backend" [project] name = "esgpull" dynamic = ["version"] +classifiers = [ + "License :: OSI Approved :: BSD License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12" +] description = "ESGF data discovery, download, replication tool" authors = [{name = "Sven Rodriguez", email = "srodriguez@ipsl.fr"}] -license = {file = "LICENSE"} readme = "README.md" requires-python = ">=3.10" dependencies = [ @@ -30,6 +36,7 @@ dependencies = [ "platformdirs>=2.6.2", "pyparsing>=3.0.9" ] +license.text = "BSD-3-Clause" [project.scripts] esgpull = "esgpull.cli:main"