forked from shabbywu/distribution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 875 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 = "moby-distribution"
version = "0.5.0"
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.6.1"
www-authenticate = "^0.9.2"
requests = ">= 2.20.0"
pydantic = ">= 1.5"
py-libtrust = ">= 1.0.4"
curlify = "2.2.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
requests-mock = "^1.9.3"
[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