-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
72 lines (60 loc) · 1.81 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
69
70
71
72
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "opensafely-jobrunner"
description = "OpenSAFELY job scheduling and executor"
readme = "README.md"
authors = [{name = "OpenSAFELY", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
requires-python = ">=3.8"
dependencies = [
"opensafely-pipeline @ git+https://github.com/opensafely-core/[email protected]",
"ruyaml",
"requests",
"opentelemetry-exporter-otlp-proto-http",
]
dynamic = ["version"]
[project.scripts]
add_job = "jobrunner.cli.add_job:run"
flags = "jobrunner.cli.flags:run"
kill_job = "jobrunner.cli.kill_job:run"
local_run = "jobrunner.cli.local_run:run"
migrate = "jobrunner.cli.migrate:run"
prepare_for_reboot = "jobrunner.cli.prepare_for_reboot:run"
retry_job = "jobrunner.cli.retry_job:run"
[project.urls]
Home = "https://opensafely.org"
Documentation = "https://docs.opensafely.org"
Source = "https://github.com/opensafely-core/job-runner"
[tool.coverage.run]
branch = true
dynamic_context = "test_function"
source = ["jobrunner"]
omit = [
"*jobrunner/cli/manifests.py",
]
[tool.coverage.report]
fail_under = 84
show_missing = true
skip_covered = true
[tool.coverage.html]
show_contexts = true
[tool.isort]
profile = "black"
known_third_party = ["pytest", "requests", "requests_mock", "setuptools", "ruamel.yaml"]
lines_after_imports = 2
skip_glob = [".direnv", ".venv", "venv"]
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::DeprecationWarning:opentelemetry.*:",
"ignore::DeprecationWarning:pytest_freezegun:17",
"ignore::DeprecationWarning:pytest_responses:9",
]
[tool.setuptools.packages.find]
include = ["jobrunner*"]
[tool.setuptools_scm]