Skip to content

Commit

Permalink
pyproject.toml: Automatically determine version from git
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke committed Nov 13, 2024
1 parent 88129b7 commit e956f94
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"

[project]
name = "xacro"
version = "2.0.10"
dynamic = ["version"]
description = "xacro is a macro language for XML"
readme = "README.md"
license = {file = "LICENSE"}
Expand All @@ -19,6 +20,8 @@ include = ["xacro"]
exclude = []
namespaces = false

[tool.setuptools_scm]

[project.urls]
Documentation = "https://github.com/ros/xacro/wiki"
Repository = "https://github.com/ros/xacro"

0 comments on commit e956f94

Please sign in to comment.