Skip to content

Commit

Permalink
set up dynamic versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
sierra-moxon committed Dec 19, 2023
1 parent 492b13f commit 74d57d3
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 = "prefixmaps"
version = "0.1.8"
version = "0.0.0"
description = "A python library for retrieving semantic prefix maps"
readme = "README.md"
authors = ["cmungall <[email protected]>"]
Expand Down Expand Up @@ -39,6 +39,11 @@ curies = ">=0.5.3"
tox = "^4.11.3"
pydantic = "^2.5"

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


[tool.poetry.dev-dependencies]
pytest = ">=6.2"
Expand All @@ -65,8 +70,8 @@ line-length = 100
target-version = ["py39", "py310"]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"

[tool.poetry.scripts]
slurp-prefixmaps = "prefixmaps.ingest.etl_runner:cli"
Expand Down

0 comments on commit 74d57d3

Please sign in to comment.