From ae52495eb0bd57aaa9fcf480a64cdd34dd613737 Mon Sep 17 00:00:00 2001 From: Dominic Sudy <99014187+doosuu@users.noreply.github.com> Date: Wed, 22 May 2024 14:58:24 +0200 Subject: [PATCH] feat: Add dynamic versioning from git tag (#11) --- NOTICE-3RD-PARTY-CONTENT.md | 2 +- pyproject.toml | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/NOTICE-3RD-PARTY-CONTENT.md b/NOTICE-3RD-PARTY-CONTENT.md index 4ae21f5..627f268 100644 --- a/NOTICE-3RD-PARTY-CONTENT.md +++ b/NOTICE-3RD-PARTY-CONTENT.md @@ -3,7 +3,7 @@ ## Python | Dependency | Version | License | |:-----------|:-------:|--------:| -|types-requests|2.31.0.20240406|Apache 2.0| +|types-requests|2.32.0.20240521|Apache 2.0| |urllib3|2.2.1|MIT| ## Workflows | Dependency | Version | License | diff --git a/pyproject.toml b/pyproject.toml index 9c117f3..dd4b0d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,14 @@ [project] name = "velocitas-lib" -version = "0.1.0" +dynamic = ["version"] dependencies = [ "requests >= 2.31.0", "types-requests" ] [build-system] -requires = ["setuptools>=61.0"] +requires = ["setuptools>=61.0", "setuptools-git-versioning"] build-backend = "setuptools.build_meta" + +[tool.setuptools-git-versioning] +enabled = true