Skip to content

Commit 17b000e

Browse files
authored
fix: set pyproject.toml metadata statically (#14)
1 parent 24f1dab commit 17b000e

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

pyproject.toml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pystrukts"
7+
description = "Advanced data structures for Python."
78
readme = "README.md"
89
requires-python = ">=3.8"
9-
dynamic = ["version", "description", "authors", "urls", "keywords"]
10+
dynamic = ["version", "keywords"]
1011
license = { file = "LICENSE" }
1112
classifiers = [
1213
"License :: OSI Approved :: Apache Software License",
@@ -21,6 +22,15 @@ classifiers = [
2122
dependencies = [
2223
]
2324

25+
authors = [
26+
{ name = "Rubén Pérez Mercado", email = "[email protected]" }
27+
]
28+
29+
[project.urls]
30+
Repository = "https://github.com/rubenperezm/pystrukts"
31+
Issues = "https://github.com/rubenperezm/pystrukts/issues"
32+
Changelog = "https://github.com/rubenperezm/pystrukts/blob/main/CHANGELOG.md"
33+
2434
[tool.setuptools_scm]
2535
write_to = "pystrukts/_version.py"
2636

0 commit comments

Comments
 (0)