From 760cdce6b7c2997a99d1f541cb3462861b38d133 Mon Sep 17 00:00:00 2001 From: Ben Beasley Date: Mon, 8 Jan 2024 08:49:28 -0500 Subject: [PATCH] Fix missing license file in the Python sdist and bdist/wheel (#124) * Fix missing license file in the Python sdist * Fix missing license file in the Python bdist/wheel https://packaging.python.org/en/latest/specifications/pyproject-toml/#license --- cramjam-python/LICENSE | 1 + cramjam-python/pyproject.toml | 1 + 2 files changed, 2 insertions(+) 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 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"