-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.02 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
37
38
[tool.poetry]
name = "catalyst-sdwan-lab"
version = "2.0.16dev3"
description = "Catalyst SD-WAN Lab Deployment Tool - Automation Tool for managing Cisco Catalyst SD-WAN labs inside Cisco Modeling Labs"
license = "BSD-3-Clause"
authors = ["Tomasz Zarski <[email protected]>"]
readme = "README.md"
repository = "https://github.com/cisco-open/sdwan-lab-deployment-tool"
keywords = ["cisco", "catalyst", "sdwan", "lab"]
[tool.poetry.scripts]
sdwan-lab = "catalyst_sdwan_lab.cli:cli"
csdwan = "catalyst_sdwan_lab.cli:cli"
[tool.poetry.dependencies]
python = "^3.9.2"
virl2-client = "^2.6.0"
requests = "^2.28.1"
pyopenssl = "^24.0.0"
passlib = "^1.7.4"
jinja2 = "3.1.5"
cisco-sdwan = "^1.24"
ruamel-yaml = "^0.17.21"
urllib3 = "^1.26.18"
catalystwan = "^0.33.10"
pyats = { version = ">=25.1", extras = ["full"] }
click = "^8.1.7"
rich-click = "^1.8.5"
[tool.poetry.group.dev.dependencies]
isort = "^5.13.2"
flake8 = "^7.0.0"
black = "^24.4.0"
mypy = "^1.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"