-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 778 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 778 Bytes
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
[tool.poetry]
name = "netests"
version = "0.3.0"
description = "Test your Network"
authors = ["Dylan Hamel <dylan.hamel@protonmail.com>"]
maintainers = ["Netests Team <ping@netests.io>"]
repository = "https://gitlab.com/DylanHamel/netests"
license = "MIT"
readme = "README.md"
keywords = ["Netests", "Testing", "Network", "Automation"]
[tool.poetry.dependencies]
netmiko = "^2.4.2"
python = "^3.6"
nornir = "^2.4.0"
click = "^7.1.2"
pylint = "^2.5.2"
ipaddress = "^1.0.23"
termcolor = "^1.1.0"
xmltodict = "^0.12.0"
typing = "^3.7.4"
pydantic = "^1.5.1"
[tool.poetry.dev-dependencies]
behave = "^1.2.6"
pylama = "^7.7.1"
mkdocs = "^1.1.2"
[tool.poetry.scripts]
netests = 'netests.welcome:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"