-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (44 loc) · 1017 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
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "netrunner"
version = "0.1.6"
description = "Network asyncio command runner using Scrapli"
authors = ["Ryan Bradshaw <[email protected]>"]
repository = "https://github.com/rbraddev/netrunner"
readme = "README.md"
keywords = ["network", "automation", "nxos", "ios", "iosxe", "ssh", "cisco"]
[tool.poetry.dependencies]
python = "^3.7"
scrapli = "^2021.1.30"
asyncssh = "^2.7.0"
pyats = "^21.8"
genie = "^21.8"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
black = "^21.6b0"
flake8 = "^3.9.2"
isort = "^5.9.3"
tox = "^3.24.3"
pytest-asyncio = "^0.15.1"
[tool.black]
line-length = 120
target-version = ['py39']
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::UserWarning",
]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py37, py38, py39
isolated_build = True
skip_missing_interpreters = True
[testenv]
whitelist_externals = poetry
commands =
poetry install
pytest
"""
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"