Skip to content

Commit

Permalink
fix: Do not specify readme as dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
ionicsolutions committed Dec 29, 2022
1 parent 9324ccb commit 835fea4
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,14 +10,15 @@ authors = [
{ name = "Kilian Kluge", email = "dev@kluge.ai" },
{ name = "The VisuaLIME developers", email = "xai.demonstrator@gmail.com" }
]
readme = "README.md"
license = { text = "Apache 2.0 License" }
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
dynamic = ["version", "dependencies", "readme"]
dynamic = ["version", "dependencies"]

[project.urls]
"Documentation" = "https://visualime.readthedocs.io/"
Expand All @@ -30,4 +31,3 @@ packages = ["visualime"]
[tool.setuptools.dynamic]
version = { attr = "visualime.__version__" }
dependencies = { file = "requirements.txt" }
readme = { file = "README.md" }

0 comments on commit 835fea4

Please sign in to comment.