Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1cd93ec

Browse files
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
1 parent 17fe0d0 commit 1cd93ec

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
include AUTHORS
2-
include README.md
2+
include README.rst
33
include LICENSE

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@ build-backend = "setuptools.build_meta"
66
name = "pynrrd"
77
dynamic = ["version"]
88
description = "Pure python module for reading and writing NRRD files."
9-
readme = { file = "README.txt", content-type = "text/x-rst" }
9+
readme = { file = "README.rst", content-type = "text/x-rst" }
1010
requires-python = ">=3.7"
11-
license = { text = "MIT License" }
12-
authors = [{ name = "Maarten Everts", email = "[email protected]" }]
11+
license = { file = "LICENSE" }
12+
authors = [
13+
{ name = "Maarten Everts", email = "[email protected]" },
14+
{ name = "Addison Elliott", email = "[email protected]" }
15+
]
1316
keywords = ["nrrd", "teem", "image", "processing", "file", "format"]
1417
classifiers = [
1518
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)