-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 881 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 881 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
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/poetry/pyproject.toml
[tool.poetry]
package-mode = false
# The dependencies in this group are installed using pipx; NOT Poetry. The use of the `tool.poetry.group` super-table
# is a hack required in order to be able to manage updates of these dependencies via Dependabot.
[tool.poetry.group.pipx]
optional = true
[tool.poetry.group.pipx.dependencies]
poetry = "2.2.1"
[tool.poetry.dependencies]
python = "~3.9"
[tool.poetry.group.dev.dependencies]
black = "^25.11"
codespell = "^2.4.2"
flake8 = "^7.3.0"
gitpython = "^3.1.49"
invoke = "^3.0.3"
mdx_truly_sane_lists = "^1.3"
mike = "^2.2.0"
mkdocs = "^1.5.3"
mkdocs-material = "^9.7.6"
pep8-naming = "^0.15.1"
pytest = "^8.4.2"
python-dateutil = "^2.9.0"
semver = "^3.0.4"
[tool.black]
line-length = 120
target-version = ["py38"]