-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (35 loc) · 914 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
39
40
41
[tool.poetry]
name = "moby-distribution"
version = "0.8.2"
description = "Yet another moby(docker) distribution implement by python."
authors = ["shabbywu <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/shabbywu/distribution"
homepage = "https://github.com/shabbywu/distribution"
[tool.poetry.dependencies]
python = ">= 3.8,<4"
www-authenticate = "^0.9.2"
requests = ">= 2.20.0"
pydantic = ">= 1.5"
py-libtrust = ">= 2.0.0"
curlify = "*"
cryptography = "*"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
requests-mock = "^1.9.3"
six = "*"
docker = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 119
skip-string-normalization = 'true'
[tool.isort]
force_grid_wrap = 0
include_trailing_comma = true
line_length = 119
multi_line_output = 3
use_parentheses = true