-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.35 KB
/
pyproject.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
40
41
42
43
44
45
46
47
[tool.poetry]
name = "aioworkers-loki"
version = "0.0.0"
description = ""
authors = ["Alexander Malev <malev@somedev.ru>"]
license = "Apache Software License 2.0"
readme = "README.rst"
homepage = "https://github.com/aioworkers/aioworkers-loki"
repository = "https://github.com/aioworkers/aioworkers-loki"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Framework :: AsyncIO",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
packages = [
{ include = "aioworkers_loki" },
]
[tool.poetry.dependencies]
python = "^3.6"
aioworkers = ">=0.18"
python-logging-loki = "^0.3.1"
[tool.poetry.dev-dependencies]
mypy = "^0.971"
flake8 = "^4.0.1"
black = "^20.8b1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-dynamic-versioning]
enable = true
# The pattern for git tag in pep440 format. It is the same as default but without the v prefix.
pattern = "(?x)^(?P<base>\\d+\\.\\d+\\.\\d+)(-?((?P<stage>[a-zA-Z]+)\\.?(?P<revision>\\d+)?))?(\\+(?P<tagged_metadata>.+))?$"
[tool.poetry-dynamic-versioning.substitution]
enable = true