forked from CiscoDevNet/virl2-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (43 loc) · 1.49 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
[tool.poetry]
name = "virl2_client"
version = "2.5.0"
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.0"
httpx = "^0.23.0"
# optional pyATS package
# (this pulls in a lot more dependencies)
# it does not pull in genie, need to specify extras=["full"] for pyATS.
# pyats = {extras=["full"], version = "^22.4", optional = true}
pyats = {version = "^22.4", optional = true}
# needed to build documentation, technically, this is a dev-dependency
# https://github.com/python-poetry/poetry/pull/606 -- no support
sphinx_rtd_theme = {version="^1", optional = true}
sphinx = {version="^5", optional = true}
[tool.poetry.dev-dependencies]
# flake8 version 6 is available but requires python>=3.8.1
flake8 = "^5"
pre-commit = "^2.17.0"
pytest = "*"
respx = "^0.20.0"
[tool.poetry.extras]
pyats = ["pyats"]
docs = ["sphinx", "sphinx_rtd_theme"]
[build-system]
requires = ["poetry>=1.1.8"]
build-backend = "poetry.masonry.api"