Skip to content
13 changes: 12 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ build-backend = "setuptools.build_meta"

[project]
name = "pystrukts"
description = "Advanced data structures for Python."
keywords = ["data structures", "structures", "tree", "graph", "list", "heap", "trie", "union find", "pystrukts"]
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version", "description", "authors", "urls", "keywords"]
dynamic = ["version"]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
Expand All @@ -21,6 +23,15 @@ classifiers = [
dependencies = [
]

authors = [
{ name = "Rubén Pérez Mercado", email = "[email protected]" }
]

[project.urls]
Repository = "https://github.com/rubenperezm/pystrukts"
Issues = "https://github.com/rubenperezm/pystrukts/issues"
Changelog = "https://github.com/rubenperezm/pystrukts/blob/main/CHANGELOG.md"

[tool.setuptools_scm]
write_to = "pystrukts/_version.py"

Expand Down