Skip to content

Commit

Permalink
Use poetry-dynamic-versioning plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
easybe committed Nov 15, 2024
1 parent 3d03c8f commit 9773a82
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,6 +1,6 @@
[tool.poetry]
name = "goosebit"
version = "0.2.5"
version = "0.0.0" # the actual version is retrieved from Git
description = ""
authors = ["Upstream Data <[email protected]>"]
readme = "README.md"
Expand Down Expand Up @@ -69,6 +69,11 @@ src_folder = "./goosebit"
[tool.mypy]
explicit_package_bases = true

[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"

[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"

0 comments on commit 9773a82

Please sign in to comment.