Skip to content

Commit

Permalink
tooling: set project.license to {text="MIT"} instead of a whole file
Browse files Browse the repository at this point in the history
Short names for standard licenses are preferred per
https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license
(and look better on PyPI).
  • Loading branch information
dbarnett committed Aug 25, 2024
1 parent 5db218b commit cec6f25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "gcalcli"
dynamic = ["version"]
requires-python = ">= 3.8"
readme = "README.md"
license = { file = "LICENSE" }
license = { text = "MIT" }
authors = [
{ name = "Eric Davis", email = "[email protected]" },
{ name = "Brian Hartvigsen", email = "[email protected]" },
Expand Down

0 comments on commit cec6f25

Please sign in to comment.