-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 850 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (34 loc) · 850 Bytes
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "squarepeg"
version = "0.3.0"
description = "Run a docker-run-style command as a Kubernetes Pod or Job, streaming its output like a local process"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"click>=8.1",
"kubernetes>=31",
"PyYAML>=6",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-cov>=5",
"ruff>=0.4",
]
[project.scripts]
squarepeg = "squarepeg.cli:main"
[tool.setuptools.packages.find]
include = ["squarepeg*"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: requires a reachable kubernetes cluster (opt in with SQUAREPEG_INTEGRATION=1)",
]
addopts = "-m 'not integration'"