Skip to content

Commit

Permalink
#222: do not set long_description dynamically
Browse files Browse the repository at this point in the history
  • Loading branch information
cwschilly committed Sep 16, 2024
1 parent 84ba695 commit cd20cf1
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 @@ -4,7 +4,8 @@ build-backend = "setuptools.build_meta"

[project]
name = "romtools"
dynamic = ["version", "long_description"]
dynamic = ["version"]
long_description = "file: README.md"
long_description_content_type = "text/markdown"
requires-python = ">=3.8"
dependencies = [
Expand All @@ -22,7 +23,6 @@ dependencies = [

[tool.setuptools.dynamic]
version = {file = "version.txt"}
long_description = {file = "README.md"}

[tool.setuptools.packages.find]
where = ["."]
Expand Down

0 comments on commit cd20cf1

Please sign in to comment.