-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
44 lines (37 loc) · 1.08 KB
/
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
42
43
[tool.poetry]
name = "harbor-api-client"
version = "2.7.5"
description = "Client for the Harbor API"
authors = ["Vadim Bauer <vb@container-registry.com>", "Alexandre Krispin <development.s004k@simplelogin.com>"]
keywords = ["Swagger", "Harbor API"]
packages = [{include = "harbor_client", from = "src"}]
license = "Apache-2.0"
repository = "https://github.com/container-registry/harbor-api-client"
homepage = "https://container-registry.com"
documentation = "https://container-registry.com/docs/"
readme = "README.md"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/container-registry/harbor-api-client/issues"
[tool.poetry.dependencies]
python = ">=3.8"
certifi = ">=2022.12.7"
six = "^1.10"
python_dateutil = "^2.8.1"
urllib3 = "^1.15.1"
[tool.poetry.group.dev.dependencies]
coverage = "^4.0.3"
nose = "^1.3.7"
pluggy = "^0.3.1"
py = "^1.4.31"
randomize = "^0.13"
black = "^23.3.0"
mypy = "^1.1.1"
ruff = "^0.0.261"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ['py38']
[tool.ruff]
line-length = 100