-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix/improve pyproject.toml metadata #160
* Incorrect README path causing issues with publishing * Introduced in #151. * Point to `LICENSE` file * Add myself to authors list
- Loading branch information
1 parent
17fe0d0
commit 1cd93ec
Showing
2 changed files
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
include AUTHORS | ||
include README.md | ||
include README.rst | ||
include LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|