-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
59 lines (41 loc) · 1.07 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "olot"
version = "0.1.2"
description = "oci layers on top"
authors = ["tarilabs <matteo.mortari@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.1.7"
pydantic = "^2.10.3"
[tool.poetry.scripts]
olot = "olot.cli:cli"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.4"
[tool.pytest.ini_options]
markers = [
"e2e_skopeo: end-to-end testing with skopeo",
"e2e_oras: end-to-end testing with oras",
]
[tool.poetry.group.dev.dependencies]
datamodel-code-generator = "^0.26.3"
ruff = "^0.6.1"
mypy = "^1.11.1"
docker = "^7.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py39"
respect-gitignore = true
[tool.ruff.lint.per-file-ignores]
"*.ipynb" = [
"E402",
] # exclude https://docs.astral.sh/ruff/rules/module-import-not-at-top-of-file/#notebook-behavior from linting, especially for demos.
[tool.mypy]
python_version = "3.9"
strict = false
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true