forked from arduino/compile-sketches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 798 Bytes
/
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
[tool.black]
line-length = 120
[tool.poetry]
name = "compilesketches"
version = "0.0.0"
description = ""
authors = ["Arduino <[email protected]>"]
[tool.poetry.dependencies]
python = "3.11.2"
GitPython = "3.1.40"
PyGithub = "2.1.1"
PyYAML = "6.0.1"
semver = "3.0.2"
[tool.poetry.group.dev.dependencies]
black = "23.11.0"
codespell = "2.2.6"
coverage = "7.3.2"
pytest = "7.4.3"
pytest-mock = "3.12.0"
flake8 = "6.1.0"
pep8-naming = "0.13.3"
yamllint = "1.33.0"
[tool.poetry.group.external]
# Provided only for use by boards platforms
# NOTE: This group is a temporary workaround that will be removed at the 2.0.0 release of the action.
optional = true
[tool.poetry.group.external.dependencies]
pyserial = "3.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"