From e7e083401e96a9bbf347d889f784f09bc65640b0 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Mon, 27 Oct 2025 09:58:40 +0100 Subject: [PATCH 1/4] add license and license-files --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 17638059..c58a1ffd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,7 @@ [project] name = "fastapi-cli" +license = "MIT" +license-files = ["LICENSE"] dynamic = ["version"] description = "Run and manage FastAPI apps from the command line with FastAPI CLI. 🚀" authors = [ From 563d3a295d9b7fbdef6f238c4411d2b0c7f21a09 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Mon, 27 Oct 2025 10:01:13 +0100 Subject: [PATCH 2/4] remove (duplicated) License classifier --- pyproject.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c58a1ffd..4a6daf04 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,6 @@ classifiers = [ "Development Status :: 4 - Beta", "Framework :: FastAPI", "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", @@ -33,7 +32,6 @@ classifiers = [ "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", - "License :: OSI Approved :: MIT License", ] dependencies = [ "typer >= 0.15.1", From ea7db37981a8bf9c22ac4bb0bdc60e61095ce62b Mon Sep 17 00:00:00 2001 From: svlandeg Date: Mon, 27 Oct 2025 10:03:18 +0100 Subject: [PATCH 3/4] fix --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4a6daf04..d1c3d0ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,5 @@ [project] name = "fastapi-cli" -license = "MIT" -license-files = ["LICENSE"] dynamic = ["version"] description = "Run and manage FastAPI apps from the command line with FastAPI CLI. 🚀" authors = [ @@ -10,6 +8,7 @@ authors = [ requires-python = ">=3.8" readme = "README.md" license = {text = "MIT"} +license-files = ["LICENSE"] classifiers = [ "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", From 60ad44b0d19410103add78948769af1eddcce862 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Mon, 27 Oct 2025 10:04:32 +0100 Subject: [PATCH 4/4] fix2 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d1c3d0ca..e060dcc5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ authors = [ ] requires-python = ">=3.8" readme = "README.md" -license = {text = "MIT"} +license = "MIT" license-files = ["LICENSE"] classifiers = [ "Intended Audience :: Information Technology",