1
0
mirror of https://github.com/arduino/library-registry.git synced 2025-05-28 19:01:25 +03:00
library-registry/pyproject.toml
per1234 92cd60a753 Add CI workflow to lint YAML files
On every push and pull request that affects relevant files, run yamllint to check the YAML files of
the repository for issues.

The .yamllint.yml file is used to configure yamllint:
https://yamllint.readthedocs.io/en/stable/configuration.html
2021-07-15 09:38:58 -07:00

25 lines
454 B
TOML

[tool.black]
line-length = 120
[tool.poetry]
name = "library-registry"
version = "0.0.0"
description = ""
authors = ["Your Name <you@example.com>"]
license = "CC0-1.0"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
invoke = "^1.5.0"
black = "^21.5b0"
flake8 = "^3.9.2"
pep8-naming = "^0.12.0"
yamllint = "^1.26.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"