Skip to content

Commit

Permalink
Fix/improve pyproject.toml metadata #160
Browse files Browse the repository at this point in the history
* Incorrect README path causing issues with publishing
    * Introduced in #151.
* Point to `LICENSE` file
* Add myself to authors list
  • Loading branch information
addisonElliott authored Nov 7, 2024
1 parent 17fe0d0 commit 1cd93ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include AUTHORS
include README.md
include README.rst
include LICENSE
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@ build-backend = "setuptools.build_meta"
name = "pynrrd"
dynamic = ["version"]
description = "Pure python module for reading and writing NRRD files."
readme = { file = "README.txt", content-type = "text/x-rst" }
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.7"
license = { text = "MIT License" }
authors = [{ name = "Maarten Everts", email = "[email protected]" }]
license = { file = "LICENSE" }
authors = [
{ name = "Maarten Everts", email = "[email protected]" },
{ name = "Addison Elliott", email = "[email protected]" }
]
keywords = ["nrrd", "teem", "image", "processing", "file", "format"]
classifiers = [
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 1cd93ec

Please sign in to comment.