-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (30 loc) · 923 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
[tool.poetry]
name = "merakitools"
version = "0.1.11"
description = "CLI tools for managing Meraki networks based on Typer"
authors = ["Billy Zoellers <[email protected]>"]
readme = "README.md"
[tool.poetry.scripts]
merakitools = "merakitools.main:app"
[tool.poetry.dependencies]
python = "^3.9"
typer = {extras = ["all"], version = "^0.9.0"}
meraki = "^1.27.0"
[tool.poetry.group.dev.dependencies]
pylint = "^2.15.5"
pytest = "^7.2.0"
black = "^23.3.0"
bandit = {extras = ["toml"], version = "^1.7.4"}
[tool.poetry.urls]
documentation = "https://github.com/billyzoellers/merakitools/README.md"
source = "https://github.com/billyzoellers/merakitools"
tracker = "https://github.com/billyzoellers/merakitools/issues"
[tool.black]
preview = true
[tool.pylint.format]
max-line-length = "88"
[tool.bandit]
skips = ["B101",]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"