Skip to content

Commit

Permalink
fix flit error due to dynamic readme
Browse files Browse the repository at this point in the history
the error message otherwise says:

```
flit only supports dynamic metadata for 'version' & 'description'
```
  • Loading branch information
TheJJ committed Mar 10, 2024
1 parent 2943a09 commit 2ce9aca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
{ name = "Michael Enßlin", email = "[email protected]" }
]
license = { file = "LICENSE" }
dynamic = ["version", "readme"]
dynamic = ["version", "description"]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
Expand Down Expand Up @@ -67,7 +67,7 @@ exclude = ["tests*"]

[tool.setuptools.dynamic]
version = { attr = "abrechnung.__version__" }
readme = { file = ["README.md"] }
description = { file = ["README.md"] }

[tool.pylint.MASTER]
extension-pkg-whitelist = [
Expand Down

0 comments on commit 2ce9aca

Please sign in to comment.