Skip to content

Commit ce57b73

Browse files
committed
Properly supply license and readme content
1 parent f16db03 commit ce57b73

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [0.0.3] - 2025-04-10
11+
12+
### Fixed
13+
14+
- Properly specify license and README content
15+
1016
## [0.0.2] - 2025-04-08
1117

1218
### Added

pyproject.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
requires-python = ">=3.9"
77
name = "minimal-pba-cli-plugin-example"
8-
version = "0.0.2"
8+
version = "0.0.3"
99
description = "A minimal command-line interface plugin for minimal-pba-cli"
1010
authors = [
1111
{ name = "Dane Hillard", email = "[email protected]" }
@@ -23,6 +23,8 @@ classifiers = [
2323
"Programming Language :: Python :: 3 :: Only",
2424
"License :: OSI Approved :: MIT License",
2525
]
26+
license = "MIT"
27+
dynamic = ["readme"]
2628
dependencies = [
2729
"rich>=14.0.0",
2830
"typer>=0.12.5",
@@ -35,5 +37,8 @@ Issues = "https://github.com/easy-as-python/minimal-pba-cli-plugin-example/issue
3537
[tool.setuptools.packages.find]
3638
where = ["src"]
3739

40+
[tool.setuptools.dynamic]
41+
readme = { file = "README.md", content-type = "text/markdown" }
42+
3843
[project.entry-points.minimal_pba_cli]
3944
example = "minimal_pba_cli_plugin_example.plugin"

0 commit comments

Comments
 (0)