forked from gabrieldemarmiesse/python-on-whales
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (43 loc) · 1.21 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "python-on-whales"
version = "0.72.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"] }
[project.optional-dependencies]
test = ["pytest"]
dev = ["ruff==0.5.6"]
[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 = ["./"]