Skip to content

Commit

Permalink
Merge pull request #19 from semiotic-ai/dynamic-versioning
Browse files Browse the repository at this point in the history
Add poetry dynamic versioning
  • Loading branch information
aasseman authored May 8, 2023
2 parents c0a1c9b + f37b02c commit 0529b66
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "autoagora-processor"
version = "0.2.0"
version = "0.0.0"
authors = [
"Alexis Asseman <[email protected]>"
]
Expand All @@ -12,6 +12,9 @@ classifiers = [
"License :: OSI Approved :: Apache Software License"
]

[tool.poetry-dynamic-versioning]
enable = true

[tool.poetry.scripts]
autoagora-processor = "autoagora_processor.main:main"

Expand All @@ -30,8 +33,8 @@ isort = "^5.10.1"
pyright = "^1.1.278"

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

[tool.semantic_release]
upload_to_repository = false
Expand Down

0 comments on commit 0529b66

Please sign in to comment.