-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 750 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 750 Bytes
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
[tool.poetry]
name = "mdocker"
version = "0.3.1"
description = "Easy-to-use wrapper for multi-platform Docker image builds."
keywords = ["docker", "docker-buildx", "multi-platform"]
authors = ["seppzer0"]
repository = "https://github.com/seppzer0/mdocker"
readme = "README.md"
license = "MIT"
packages = [{include = "mdocker"}]
[tool.poetry.dependencies]
python = "^3.10"
argparse = "^1.4.0"
pathlib = "^1.0"
typing = "^3.7"
pydantic = "^2.6"
[tool.poetry.dev-dependencies]
pytest = "^8.0"
pytest-cov = "^4.0.0"
pytest-mock = "^3.12.0"
twine = "^4.0.2"
pyright = "^1.1"
[tool.coverage.run]
source = ["mdocker/models"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"