From 33173a457a715439084c8033115c940f3d2f69ce Mon Sep 17 00:00:00 2001 From: Simon Cozens Date: Thu, 29 Feb 2024 16:58:18 +0000 Subject: [PATCH] Fix git describe version detection --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 6baa207..0a1c0e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,6 +49,9 @@ build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] where = ["Lib"] +[tool.setuptools_scm] +git_describe_command = "git describe --match 'v*' --tags" + [project.scripts] shaperglot = "shaperglot.cli:main"