Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ Fixes
* Fix ``const`` discard warnings in ``fletcher32``.
By :user:`John Kirkham <jakirkham>`, :issue:`728`

* Update ``license*`` metadata and include third-party licenses.
By :user:`John Kirkham <jakirkham>`, :issue:`729`

Maintenance
~~~~~~~~~~~

Expand Down
11 changes: 7 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = [
"setuptools>=64",
"setuptools>=77",
"setuptools-scm[toml]>=6.2",
"Cython",
"py-cpuinfo",
Expand All @@ -24,7 +24,6 @@ classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: Unix",
Expand All @@ -34,7 +33,12 @@ classifiers = [
maintainers = [
{ name = "Alistair Miles", email = "[email protected]" },
]
license = { text = "MIT" }
license = "MIT"
license-files = [
"LICENSE.txt",
"c-blosc/LICENSE.txt",
"c-blosc/LICENSES/*",
]

[project.urls]
"Bug Tracker" = "https://github.com/zarr-developers/numcodecs/issues"
Expand Down Expand Up @@ -94,7 +98,6 @@ crc32c = [
"numcodecs.zfpy" = "numcodecs.zarr3:ZFPY"

[tool.setuptools]
license-files = ["LICENSE.txt"]
package-dir = {"" = "."}
packages = ["numcodecs", "numcodecs.tests"]
zip-safe = false
Expand Down
Loading