-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(pyproject.toml): add licence and exclude automatic licence file d…
…ue to setuptools metadata version drift See pypa/setuptools#4759
- Loading branch information
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
@@ -43,6 +50,9 @@ ignore = [ | |
"SIM110", # reimplemented-builtin | ||
] | ||
|
||
[tool.setuptools] | ||
license-files = [] | ||
|
||
[tool.setuptools.package-data] | ||
tovald = [ | ||
"static/*", "static/.*", | ||
|