-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (35 loc) · 953 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 = "catalystwan"
version = "0.40.0"
description = "Cisco Catalyst WAN SDK for Python"
authors = ["kagorski <kagorski@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.4.0 issue https://github.com/jd/tenacity/issues/471
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.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 = "^2.19.0"
mypy = ">=1.0.0, <1.11.0"
flake8 = "^5.0.4"
Sphinx = "^5.2.3"
[build-system]
requires = ["poetry-core>=1.4.0"]
build-backend = "poetry.core.masonry.api"