-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
53 lines (45 loc) · 1.51 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "virl2_client"
version = "2.7.1"
description = "VIRL2 Client Library"
authors = ["Simon Knight <[email protected]>", "Ralph Schmieder <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/ciscodevnet/virl2-client"
repository = "https://github.com/ciscodevnet/virl2-client"
include = ["examples/*"]
exclude = ["tests/**/*"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: System :: Networking",
]
[tool.poetry.dependencies]
python = "^3.8.1"
httpx = "^0.26.0"
# https://github.com/python-poetry/poetry/pull/606 -- no support for optional dev-deps
# optional package for events
aiohttp = {version = "^3.8", optional = true}
# optional pyATS package
# (this pulls in a lot more dependencies)
# it does not pull in genie, need to specify extras=["full"] for pyATS.
pyats = {version = "^24", optional = true}
# optional packages for documentation build
sphinx_rtd_theme = {version="^1", optional = true}
sphinx = {version="^7", optional = true}
[tool.poetry.group.dev.dependencies]
flake8 = "^7"
pre-commit = "^3"
# https://github.com/pytest-dev/pytest-asyncio/issues/737
pytest = "<8"
respx = "^0.20.0"
[tool.poetry.extras]
events = ["aiohttp"]
pyats = ["pyats"]
docs = ["sphinx", "sphinx_rtd_theme"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"