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
|
[tool.poetry]
name = "project"
version = "0.0.999"
description = "Some special character like Ø, and Ř in UTF-8 encoding."
authors = []
[tool.poetry.dependencies]
python = "^3.5"
dependency-classic = {path = "../dependency-classic"}
dependency-dynamic = {path = "../dependency-dynamic"}
dependency-static = {path = "../dependency-static"}
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
tag-dir = "alt/tags"
[tool.poetry-dynamic-versioning.substitution]
folders = [
{ path = "docs", files = ["*.txt"], patterns = ["(<).*(>)"] }
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|