-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (33 loc) · 922 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
38
39
40
[tool.poetry]
name = "pyavd-cli"
version = "0.0.0"
description = "A collection of cli scripts to use pyavd"
authors = ["Arista Networks <[email protected]>"]
readme = "README.md"
include = ["CHANGELOG.md", "LICENSE"]
[tool.poetry-dynamic-versioning]
enable = true
metadata = false
[tool.poetry.dependencies]
python = "^3.10"
pyavd = {extras = ["ansible", "ansible-collection"], version = ">=4.9.0"}
[tool.poetry.group.dev.dependencies]
black = "^24.1.1"
isort = "^5.13.2"
flake8 = "^7.0.0"
flake8-docstrings = "^1.7.0"
pre-commit = ">=3.6,<5.0"
pylint = "^3.0.3"
pylint-exit = "^1.2.0"
mypy = "^1.8.0"
types-pyyaml = "^6.0.12.12"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.black]
line-length = 130
preview = true
[tool.isort]
profile = "black"
[tool.poetry.scripts]
pyavd-build = "pyavd_cli.build:main"