-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 1.01 KB
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
41
[tool.poetry]
name = "catalystwan"
version = "0.41.5"
description = "Cisco Catalyst WAN SDK for Python"
authors = ["sbasan <sbasan@cisco.com>"]
readme = "README.md"
repository = "https://github.com/cisco-en-programmability/catalystwan-sdk"
[tool.poetry.dependencies]
python = "^3.8.0"
requests = "^2.27.1"
python-dateutil = "^2.8.2"
attrs = ">=21.4.0"
ciscoconfparse = "1.9.41"
tenacity = ">=8.1.0, !=8.4.0"
Jinja2 = "^3.1.2"
flake8-quotes = "^3.3.1"
clint = "^0.5.1"
requests-toolbelt = "^1.0.0"
packaging = "^23.0"
pydantic = "^2.7"
typing-extensions = "^4.6.1"
[tool.poetry.group.dev.dependencies]
parameterized = "^0.9.0"
pytest = "^7.1.2"
pytest-mock = "^3.7.0"
pytest-subtests = "^0.13.1"
isort = "^5.10.1"
pre-commit = "^3.5.0"
mypy = ">=1.0.0, !=1.11.0"
flake8 = [
{ version = ">=5.0.4", python = "<3.8.1" },
{ version = ">=7.1.2", python = ">=3.8.1,<3.9" },
{ version = "^7.3.0", python = ">=3.9" },
]
Sphinx = "^5.2.3"
[build-system]
requires = ["poetry-core>=1.4.0"]
build-backend = "poetry.core.masonry.api"