Skip to content

Commit 63cc915

Browse files
authored
fix: set pyproject.toml details statically (#15)
1 parent 24f1dab commit 63cc915

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

pyproject.toml

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

55
[project]
66
name = "pystrukts"
7+
description = "Advanced data structures for Python."
8+
keywords = ["data structures", "structures", "tree", "graph", "list", "heap", "trie", "union find", "pystrukts"]
79
readme = "README.md"
810
requires-python = ">=3.8"
9-
dynamic = ["version", "description", "authors", "urls", "keywords"]
11+
dynamic = ["version"]
1012
license = { file = "LICENSE" }
1113
classifiers = [
1214
"License :: OSI Approved :: Apache Software License",
@@ -21,6 +23,15 @@ classifiers = [
2123
dependencies = [
2224
]
2325

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

0 commit comments

Comments
 (0)