-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (33 loc) · 1.08 KB
/
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
[tool.poetry]
name = "gen-tools"
version = "0.1.0"
description = "Environment description for EFM32 MCU Rust PAC/HAL generation helper tool"
authors = ["Vladimir Petrigo <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0.0"
toml = "~0.10"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
flake8-adjustable-complexity = "^0.0.6"
flake8-annotations-coverage = "^0.0.6"
flake8-annotations = "^3.0.0"
flake8-builtins = "^2.1.0"
flake8-cognitive-complexity = "^0.1.0"
flake8-commas = "^2.1.0"
flake8-comprehensions = "^3.10.1"
flake8-expression-complexity = "^0.0.11"
flake8-functions = "^0.0.7"
flake8-simplify = "^0.19.3"
flake8-scream = "^0.1.0"
pep8-naming = "^0.13.3"
flake8-bugbear = "^23.2.13"
flake8-pie = "^0.16.0"
flake8-print = "^5.0.0"
flake8-use-pathlib = "^0.3.0"
flake8-global-variables = {git = "https://github.com/i02sopop/flake8-global-variables"}
flake8-grug = {git = "https://github.com/c0ntribut0r/flake8-grug"}
pylint = "^2.16.2"
flake8-pylint = "^0.1.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"