Skip to content

Commit

Permalink
fix(pyproject.toml): add licence and exclude automatic licence file d…
Browse files Browse the repository at this point in the history
…ue to setuptools metadata version drift

See pypa/setuptools#4759
  • Loading branch information
senges committed Dec 4, 2024
1 parent 51e3f01 commit 0c5dbe6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@ name = "tovald"
version = "0.1.0"
description = "Publish rich markdown documentation to Confluence"
readme = "README.md"
authors = [
{name="Charles SENGES", email="[email protected]"}
]
license = {text = "GNU GPLv3+"}
requires-python = ">=3.12"
dependencies = [
"myst-parser==4.0",
"sphinx==8.1",
"sphinx-toolbox==3.8",
"sphinxcontrib-confluencebuilder==2.8",
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]

[project.scripts]
tovald = "tovald.main:main"
Expand Down Expand Up @@ -43,6 +50,9 @@ ignore = [
"SIM110", # reimplemented-builtin
]

[tool.setuptools]
license-files = []

[tool.setuptools.package-data]
tovald = [
"static/*", "static/.*",
Expand Down

0 comments on commit 0c5dbe6

Please sign in to comment.