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 = "aio-eapi"
version = "0.6.3"
description = "Arista EOS API asyncio client"
readme = "README.md"
authors = ["Jeremy Schulman"]
packages = [
{ include = 'aioeapi' },
]
[tool.poetry.dependencies]
python = ">=3.8"
httpx = "^0.23.3"
[tool.poetry.dev-dependencies]
pytest = "*"
invoke = "*"
black = "*"
flake8 = "*"
pytest-cov = "*"
pytest-asyncio = "*"
pre-commit = "*"
interrogate = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.interrogate]
fail-under = 0
verbose = 1
color = true
ignore-module = true
exclude = ["examples", "build", "venv"]
|