From 15a97608c079004f6a4b1201a6de61ceb078424f Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Mon, 8 Jan 2024 07:56:20 -0500 Subject: [PATCH 1/2] Fix missing license file in the Python sdist --- cramjam-python/LICENSE | 1 + 1 file changed, 1 insertion(+) create mode 120000 cramjam-python/LICENSE diff --git a/cramjam-python/LICENSE b/cramjam-python/LICENSE new file mode 120000 index 00000000..ea5b6064 --- /dev/null +++ b/cramjam-python/LICENSE @@ -0,0 +1 @@ +../LICENSE \ No newline at end of file From ba98b5051454ce244b69fa8244e4cdf2723519ab Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Mon, 8 Jan 2024 08:06:11 -0500 Subject: [PATCH 2/2] Fix missing license file in the Python bdist/wheel https://packaging.python.org/en/latest/specifications/pyproject-toml/#license --- cramjam-python/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/cramjam-python/pyproject.toml b/cramjam-python/pyproject.toml index c77b2234..2a4aa852 100644 --- a/cramjam-python/pyproject.toml +++ b/cramjam-python/pyproject.toml @@ -2,6 +2,7 @@ name = "cramjam" keywords = ["compression", "decompression", "snappy", "zstd", "bz2", "gzip", "lz4", "brotli", "deflate"] requires-python = ">=3.7" +license = { file = "LICENSE" } [project.urls] homepage = "https://github.com/milesgranger/pyrus-cramjam"