Skip to content

Commit

Permalink
try to add dynamic versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtapolasek committed Nov 13, 2024
1 parent 2f8649c commit e7e8552
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "ssg"
version = "0.1.76"
description = "SSG library"
version = "0.0.0"
authors = ["Your Name <[email protected]>"]
readme = "README.md"
license = "BSD-3-Clause"
Expand All @@ -14,5 +14,10 @@ setuptools = "^75.4.0"


[build-system]
requires = ["poetry-core"]
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"

[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
pattern = '(?P<base>v\d+\.\d+\.\d+)'

0 comments on commit e7e8552

Please sign in to comment.