-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>" ] | ||
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 = "." |