-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
29 lines (25 loc) · 863 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
[tool.poetry]
name = "container-data-collector"
version = "0.1.0"
description = "Collecting and grouping data from various containers"
license = "MIT"
authors = ["Pavel Tsayukov <[email protected]>"]
readme = "README.md"
repository = "https://github.com/hmnhbfw/container-data-collector"
documentation = "https://github.com/hmnhbfw/container-data-collector#readme"
keywords = []
classifiers = [
"Development Status :: 1 - Planning",
"Operating System :: OS Independent",
]
packages = [{ include = "container_data_collector", from = "src" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/hmnhbfw/container-data-collector/issues"
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.group.dev.dependencies]
pytest = "~7.4.3"
pytest-benchmark = "~4.0.0"
[build-system]
requires = ["poetry-core~=1.6"]
build-backend = "poetry.core.masonry.api"