diff --git a/libs/manubot_ai_editor/__init__.py b/libs/manubot_ai_editor/__init__.py index e69de29..c6797ee 100644 --- a/libs/manubot_ai_editor/__init__.py +++ b/libs/manubot_ai_editor/__init__.py @@ -0,0 +1,6 @@ +""" +Init file for manubot_ai_editor +""" + +# note: version data is maintained by poetry-dynamic-versioning (do not edit) +__version__ = "0.0.0" diff --git a/pyproject.toml b/pyproject.toml index e4a1a93..703e981 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,11 @@ [build-system] -build-backend = "poetry.core.masonry.api" -requires = [ "poetry-core>=1" ] +build-backend = "poetry_dynamic_versioning.backend" +requires = [ "poetry-core>=1", "poetry-dynamic-versioning>=1,<2" ] [tool.poetry] name = "manubot-ai-editor" -version = "0.5.2" +# note: version data is maintained by poetry-dynamic-versioning (do not edit) +version = "0.0.0" description = "A Manubot plugin to revise a manuscript using GPT-3" authors = [ "Milton Pividori " ] maintainers = [ @@ -33,5 +34,11 @@ pyyaml = "*" [tool.poetry.group.dev.dependencies] pytest = ">=8.3.3" +[tool.poetry-dynamic-versioning] +enable = true +style = "pep440" +vcs = "git" +substitution.files = [ "libs/manubot_ai_editor/__init__.py" ] + [tool.setuptools_scm] root = "."