-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 943 Bytes
/
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
[tool.poetry]
name = "loggate"
version = "1.12.0"
license = "MIT"
readme = "README.md"
description = "The complex logging system."
authors = ["Martin Korbel <mkorbel@alps.cz>"]
homepage = "https://github.com/calcite/loggate"
repository = "https://github.com/calcite/loggate"
documentation = "https://github.com/calcite/loggate"
keywords = ["log", "logging", "logger", "loki"]
classifiers = [
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.8"
frozenlist = {version = "^1.5.0", optional = true}
aiohttp = { version = "^3.10.0", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^7.3.1"
PyYAML = "^6.0.0"
pytest-asyncio = "^0.21.0"
[tool.poetry.extras]
asyncio = ["frozenlist","aiohttp"]
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"