-
Notifications
You must be signed in to change notification settings - Fork 107
/
pyproject.toml
69 lines (58 loc) · 1.55 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
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "python-on-whales"
version = "0.74.0"
description = "A Docker client for Python, designed to be fun and intuitive!"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8, <4"
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[dependency-groups]
dev = [
"ruff>=0.5.6",
"pytest==7.*",
"pytest-mock>=3.14.0",
"pytz>=2024.2",
"astunparse==1.6.3",
"griffe==1.2.0",
"markdown==3.7",
"markupsafe==2.1.5",
"mkdocs==1.6.1",
"mkdocs-autorefs==1.1.0",
"mkdocs-get-deps==0.2.0",
"mkdocs-material==9.5.34",
"mkdocstrings==0.25.2",
"mkdocstrings-python==1.10.9",
"pymdown-extensions==10.9",
]
[project.urls]
"Source" = "https://github.com/gabrieldemarmiesse/python-on-whales"
"Documentation" = "https://gabrieldemarmiesse.github.io/python-on-whales/"
"Bug Tracker" = "https://github.com/gabrieldemarmiesse/python-on-whales/issues"
[project.scripts]
python-on-whales = "python_on_whales.command_line_entrypoint:main"
[tool.setuptools.packages.find]
exclude = ["tests*", "docs*"]
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
ignore = [
"E501", # Line too long
]
select = [
"I", # isort
"F", # Pyflakes
"E", # pycodestyle
"W", # pycodestyle
]
[tool.pytest.ini_options]
markers = [
"docker: marks tests as needing a docker engine to run",
"podman: marks tests as needing a podman engine to run",
]
xfail_strict = true
pythonpath = ["./"]