-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
36 lines (32 loc) · 983 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
[tool.poetry]
name = "catalyst-sdwan-lab"
version = "2.0.14"
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 <tzarski@cisco.com>"]
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.__main__:main"
csdwan = "catalyst_sdwan_lab.__main__:main"
[tool.poetry.dependencies]
python = "^3.9"
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 = ">=23.1,<=24.2"
[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"