-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (57 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
67 lines (57 loc) · 1.26 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
[project]
name = "robot-stack"
version = "0.1.0"
description = "Tools to inspect and build Opentrons robots"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"httpx>=0.28.1",
"mypy>=2.1.0",
"pyyaml>=6.0.3",
"rich>=15.0.0",
"ruff>=0.15.14",
"rust-just>=1.51.0",
"semver>=3.0.4",
"ty>=0.0.39",
"types-pyyaml>=6.0.12.20260518",
]
# Black configuration removed in favor of Ruff formatter
[tool.ruff]
line-length = 130
target-version = "py314"
exclude = [
".git",
".venv",
".github",
"buildroot",
"opentrons",
"ot3-firmware",
"oe-core",
"opentrons-ot2",
"robot-stack-infra",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
fixable = ["ALL"]
[tool.ruff.lint.isort]
case-sensitive = true
known-first-party = ["automation"]
[tool.ruff.lint.per-file-ignores]
"automation/release_guides.py" = ["E501"]
[tool.ty.rules]
unused-ignore-comment = "error"
redundant-cast = "warn"
possibly-missing-attribute = "error"
possibly-missing-import = "error"
[build-system]
requires = ["hatchling>=1.29.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["automation"]
[tool.uv]
package = true