Skip to content

Commit 1e286b5

Browse files
author
Cameron Mattson
committed
Included dynamic tags in poetry
1 parent d53c372 commit 1e286b5

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

pyproject.toml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pairwise-compare"
3-
version = "0.1.2"
3+
version = "0.0.0"
44
description = "Allows the user to compare groups of data specified in a tidy pandas dataframe with ease."
55
authors = ["Cameron Mattson <[email protected]>"]
66
license = "BSD 3-Clause"
@@ -28,6 +28,15 @@ matplotlib = "^3.9.2"
2828
pylint = "^3.3.1"
2929
notebook = "^7.2.2"
3030

31+
[project]
32+
dynamic = ["version"]
33+
34+
[tool.poetry.requires-plugins]
35+
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
36+
37+
[tool.poetry-dynamic-versioning]
38+
enable = true
39+
3140
[build-system]
32-
requires = ["poetry-core"]
33-
build-backend = "poetry.core.masonry.api"
41+
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
42+
build-backend = "poetry_dynamic_versioning.backend"

0 commit comments

Comments
 (0)