-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.06 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
[project]
requires-python = ">=3.13"
[tool.poetry]
name = "pyhalboy"
version = "1.3.0"
description = "Halboy port to python for everything HAL related."
authors = [
"Bamdad Dashtban <bamdadd@gmail.com>",
"Jonas Svalin <jonassvalin@gmail.com>",
"Toby Clemson <tobyclemson@gmail.com>"
]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.13,<4.0"
uritemplate = "^4.1.1"
httpx = "^0.28.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.9"
poethepoet = "^0.29.0"
pyright = "^1.1.383"
pytest = "^8.3.3"
respx = "^0.21.1"
[tool.pyright]
include = ["src", "test"]
strict = ["src"]
reportMissingTypeStubs = "error"
[tool.ruff]
line-length = 79
[tool.pytest.ini_options]
pythonpath = ["src"]
addopts = ["--strict-markers"]
[tool.poe.tasks]
lint-check = "ruff check"
lint-fix = "ruff check --fix"
format-check = "ruff format --check"
format-fix = "ruff format"
type-check = "pyright"
test = "pytest"
precommit = ["lint-fix", "format-fix", "type-check", "test"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"