Adding upstream version 0.6.3.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
4a6dd5e474
commit
341025cc97
11 changed files with 1078 additions and 0 deletions
37
pyproject.toml
Normal file
37
pyproject.toml
Normal file
|
@ -0,0 +1,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"]
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue