forked from CiscoDevNet/virl2-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 980 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
[tool.poetry]
name = "virl2_client"
version = "2.2.1.post1"
description = "VIRL2 Client Library"
authors = ["Simon Knight <simknigh@cisco.com>", "Ralph Schmieder <rschmied@cisco.com>"]
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.6",
"Topic :: System :: Networking",
]
[tool.poetry.dependencies]
python = "^3.5.0"
requests = "^2"
requests-toolbelt = "^0.9.1"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-cov = "*"
responses = "*"
sphinx_rtd_theme = "*"
requests-mock = "^1.9.2"
flake8 = "^3.9.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"