Skip to content

Commit

Permalink
fix: set pyproject.toml details statically (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenperezm authored Oct 15, 2024
1 parent 24f1dab commit 63cc915
Showing 1 changed file with 12 additions and 1 deletion.
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 = "rubenpermerc@gmail.com" }
]

[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

0 comments on commit 63cc915

Please sign in to comment.