-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
pyproject.plugin.toml
39 lines (36 loc) · 1.33 KB
/
pyproject.plugin.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[tool.poetry]
name = "poetry-dynamic-versioning-plugin"
version = "0.4.0"
description = "Plugin for Poetry to enable dynamic versioning based on VCS tags"
license = "MIT"
authors = ["Matthew T. Kennerly <[email protected]>"]
readme = "README.plugin.md"
repository = "https://github.com/mtkennerly/poetry-dynamic-versioning"
keywords = ["poetry", "plugin", "version", "versioning", "dynamic"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Version Control",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Software Development :: Version Control :: Mercurial",
"Topic :: Software Development :: Version Control :: Bazaar",
]
packages = [
{ include = "poetry_dynamic_versioning" }
]
[tool.poetry.dependencies]
python = "^3.7"
dunamai = "^1.12.0"
tomlkit = ">= 0.4"
jinja2 = ">=2.11.1, <4"
poetry = "^1.2.0"
[tool.poetry.plugins."poetry.application.plugin"]
poetry-dynamic-versioning-plugin = "poetry_dynamic_versioning.plugin:DynamicVersioningPlugin"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"