From a5d1b87158f51bce0046f4d60fd43ab9c771247d Mon Sep 17 00:00:00 2001 From: Vitor Hideyoshi Nakazone Batista Date: Mon, 24 Jun 2024 00:54:56 -0300 Subject: [PATCH] Adds Dynamic Version --- pyproject.toml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 865f7ac..32ce432 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yoshi-seals" -version = "2.0.3692068302" +version = "0.0.0" description = "" authors = ["Vitor Hideyoshi Nakazone Batista "] license = "GPL-2.0-only" @@ -25,6 +25,13 @@ cython = "^3.0.10" setuptools = "^70.1.0" +[tool.poetry-dynamic-versioning] +enable = true +vcs = "git" +base = "2.1" +format = "v{base}+{distance}.{commit}" + + [build-system] -requires = ["poetry-core", "setuptools>=70.1.0", "cython>=3.0.10", "numpy>=2.0.0"] -build-backend = "poetry.core.masonry.api" +requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"] +build-backend = "poetry_dynamic_versioning.backend"