-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (75 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
86 lines (75 loc) · 1.82 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["uv_build"]
build-backend = "uv_build"
[project]
name = "buildrunner"
version = "3.25"
description = "Docker-based build tool"
readme = "README.rst"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Adobe", email = "noreply@adobe.com"}
]
urls = { "Homepage" = "https://github.com/adobe/buildrunner" }
dependencies = [
"Jinja2>=2.11.2",
"PyYAML>=6.0",
"bcrypt>=3.2.0",
"decorator>=5.1.0",
"docker>=6.1.2",
"fabric>=2.5.0",
"paramiko>=2.10.3,<4.0.0",
"requests>=2.27.0",
"twine>=6.1.0",
"vcsinfo>=2.1.105",
"graphlib-backport>=1.0.3",
"timeout-decorator>=0.5.0",
"python-on-whales>=0.70.1",
"pydantic>=2.11.7",
"retry2>=0.9.5",
"colorlog>=6.8.0",
"rich>=13",
"portalocker>=2.10.1",
]
[dependency-groups]
dev = [
"pytest>=7.2.1",
"pytest-randomly>=3.5.0",
"pytest-retry>=1.7.0",
"pytest-cov>=2.10.1",
"pytest-xdist>=2.4.0",
"graphlib-backport>=1.0.3",
"ruff>=0.12.7",
"ruff-lsp>=0.0.45",
"pre-commit>=3.6",
"pytest-rerunfailures>=14.0",
]
[project.scripts]
buildrunner = "buildrunner.cli:main"
buildrunner-cleanup = "buildrunner.cli:clean_cache"
[tool.uv.build-backend]
module-name = "buildrunner"
module-root = ""
source-exclude = ["buildrunner/test"]
wheel-exclude = ["buildrunner/test"]
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"serial",
]
retries = 2
[tool.ruff]
preview = true
[tool.ruff.lint]
extend-select = ["CPY"]
[tool.ruff.lint.extend-per-file-ignores]
"tests/*" = ["CPY"]
[tool.ruff.lint.flake8-copyright]
min-file-size = 200
notice-rgx = '''"""
Copyright [(2)\d{3}]* Adobe
All Rights Reserved.
NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
with the terms of the Adobe license agreement accompanying it.
"""'''