2020-01-03 00:44:18 -07:00
|
|
|
[build-system]
|
|
|
|
build-backend = "poetry.masonry.api"
|
2020-10-05 12:15:10 -07:00
|
|
|
requires = ["poetry>=0.12"]
|
2020-01-03 00:44:18 -07:00
|
|
|
|
|
|
|
[tool.poetry]
|
2020-02-13 18:27:33 -07:00
|
|
|
authors = ["Matt Love <matt@hyperglass.io>"]
|
2020-07-27 00:41:49 -07:00
|
|
|
classifiers = [
|
2020-10-05 12:15:10 -07:00
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Intended Audience :: Information Technology",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Programming Language :: JavaScript",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Topic :: Internet",
|
|
|
|
"Topic :: System :: Networking",
|
2020-07-27 00:41:49 -07:00
|
|
|
]
|
2020-10-05 12:15:10 -07:00
|
|
|
description = "hyperglass is the modern network looking glass that tries to make the internet better."
|
|
|
|
documentation = "https://hyperglass.io"
|
|
|
|
homepage = "https://hyperglass.io"
|
|
|
|
keywords = ["looking glass", "network automation", "isp", "bgp", "routing"]
|
|
|
|
license = "BSD-3-Clause-Clear"
|
|
|
|
name = "hyperglass"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/checktheroads/hyperglass"
|
2021-03-03 16:03:09 -07:00
|
|
|
version = "1.0.0-beta.80"
|
2020-01-03 00:44:18 -07:00
|
|
|
|
2020-02-13 18:27:33 -07:00
|
|
|
[tool.poetry.scripts]
|
2020-02-13 22:02:09 -07:00
|
|
|
hyperglass = "hyperglass.console:CLI"
|
2020-02-13 18:27:33 -07:00
|
|
|
|
2020-01-03 00:44:18 -07:00
|
|
|
[tool.poetry.dependencies]
|
2020-10-05 12:15:10 -07:00
|
|
|
Pillow = "^7.0.0"
|
|
|
|
PyJWT = "^1.7.1"
|
|
|
|
PyYAML = "^5.3"
|
2020-07-23 17:54:51 -07:00
|
|
|
aiofiles = "^0.5.0"
|
2020-01-03 00:44:18 -07:00
|
|
|
aredis = "^1.1.7"
|
|
|
|
click = "^7.0"
|
2020-10-10 21:16:54 -07:00
|
|
|
cryptography = "3.0.0"
|
2020-07-13 02:21:43 -07:00
|
|
|
distro = "^1.5.0"
|
|
|
|
fastapi = "^0.59"
|
2020-10-05 12:15:10 -07:00
|
|
|
favicons = "^0.0.9"
|
2020-07-13 02:21:43 -07:00
|
|
|
gunicorn = "^20.0.4"
|
2020-02-13 22:34:55 -07:00
|
|
|
httpx = "^0.11"
|
2020-07-13 02:21:43 -07:00
|
|
|
inquirer = "^2.6.3"
|
2020-01-03 00:44:18 -07:00
|
|
|
loguru = "^0.4.0"
|
2020-10-05 12:15:10 -07:00
|
|
|
netmiko = "^3.3.2"
|
2020-07-13 02:21:43 -07:00
|
|
|
paramiko = "^2.7.1"
|
2020-07-23 17:54:51 -07:00
|
|
|
psutil = "^5.7.2"
|
2020-09-28 14:50:02 -07:00
|
|
|
py-cpuinfo = "^7.0.0"
|
2021-02-10 00:43:40 -07:00
|
|
|
pydantic = "^1.7.3"
|
2020-09-28 14:50:02 -07:00
|
|
|
python = ">=3.6.1,<4.0"
|
2020-07-13 02:21:43 -07:00
|
|
|
redis = "^3.5.3"
|
2020-10-05 12:15:10 -07:00
|
|
|
scrapli = {extras = ["asyncssh"], version = "^2020.9.26"}
|
2020-02-13 23:31:24 -07:00
|
|
|
uvicorn = "^0.11"
|
2020-01-03 00:44:18 -07:00
|
|
|
uvloop = "^0.14.0"
|
2020-04-24 11:41:43 -07:00
|
|
|
xmltodict = "^0.12.0"
|
2020-01-03 00:44:18 -07:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
bandit = "^1.6.2"
|
2020-02-13 18:27:33 -07:00
|
|
|
black = "^19.10b0"
|
2020-07-13 02:21:43 -07:00
|
|
|
flake8 = "^3.8"
|
2020-01-03 00:44:18 -07:00
|
|
|
flake8-bandit = "^2.1.2"
|
|
|
|
flake8-black = "^0.1.1"
|
|
|
|
flake8-breakpoint = "^1.1.0"
|
|
|
|
flake8-bugbear = "^20.1.0"
|
|
|
|
flake8-builtins = "^1.4.2"
|
|
|
|
flake8-comprehensions = "^3.1.4"
|
|
|
|
flake8-deprecated = "^1.3"
|
2020-02-13 18:27:33 -07:00
|
|
|
flake8-docstrings = "^1.5.0"
|
2020-01-03 00:44:18 -07:00
|
|
|
flake8-eradicate = "^0.2.4"
|
|
|
|
flake8-if-expr = "^1.0.0"
|
2020-09-28 14:50:02 -07:00
|
|
|
flake8-isort = "^4.0.0"
|
2020-01-03 00:44:18 -07:00
|
|
|
flake8-pie = "^0.4.2"
|
2020-09-28 14:50:02 -07:00
|
|
|
flake8-plugin-utils = "^1.3.1"
|
2020-01-03 00:44:18 -07:00
|
|
|
flake8-polyfill = "^1.0.2"
|
|
|
|
flake8-print = "^3.1.4"
|
2020-09-28 14:50:02 -07:00
|
|
|
isort = "^5.5.3"
|
2020-02-13 18:27:33 -07:00
|
|
|
mccabe = "^0.6.1"
|
2020-01-03 00:44:18 -07:00
|
|
|
pep8-naming = "^0.9.1"
|
|
|
|
pre-commit = "^1.21.0"
|
2020-02-14 16:31:12 -07:00
|
|
|
stackprinter = "^0.2.3"
|
2020-01-03 00:44:18 -07:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 88
|