1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
checktheroads-hyperglass/pyproject.toml

86 lines
2.2 KiB
TOML
Raw Normal View History

2020-01-03 00:44:18 -07:00
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]
2020-01-03 00:44:18 -07:00
[tool.poetry]
2021-05-31 18:31:14 -07:00
authors = ["Matt Love <matt@hyperglass.dev>"]
2020-07-27 00:41:49 -07:00
classifiers = [
2021-05-30 01:12:32 -07:00
"Development Status :: 5 - Production/Stable",
"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
]
description = "hyperglass is the modern network looking glass that tries to make the internet better."
2021-05-31 18:31:14 -07:00
documentation = "https://hyperglass.dev"
homepage = "https://hyperglass.dev"
keywords = ["looking glass", "network automation", "isp", "bgp", "routing"]
license = "BSD-3-Clause-Clear"
name = "hyperglass"
readme = "README.md"
2021-06-23 19:22:30 -07:00
repository = "https://github.com/thatmattlove/hyperglass"
2021-07-03 23:08:17 -07:00
version = "1.0.4"
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]
2021-04-24 15:52:26 -07:00
Pillow = "^7.2"
PyJWT = "^2.0.1"
PyYAML = "^5.4.1"
aiofiles = "^0.6.0"
aredis = "^1.1.8"
click = "^7.1.2"
2020-10-10 21:16:54 -07:00
cryptography = "3.0.0"
2020-07-13 02:21:43 -07:00
distro = "^1.5.0"
2021-04-24 15:52:26 -07:00
fastapi = "^0.63.0"
favicons = "^0.0.9"
2021-04-24 15:52:26 -07:00
gunicorn = "^20.1.0"
httpx = "^0.17.1"
2020-07-13 02:21:43 -07:00
inquirer = "^2.6.3"
2021-04-24 15:52:26 -07:00
loguru = "^0.5.3"
netmiko = "^3.4.0"
paramiko = "^2.7.2"
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-04-24 15:52:26 -07:00
pydantic = "^1.8.1"
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"
2021-04-24 15:52:26 -07:00
scrapli = {extras = ["asyncssh"], version = "^2021.1.30"}
uvicorn = {extras = ["standard"], version = "^0.13.4"}
2020-01-03 00:44:18 -07:00
uvloop = "^0.14.0"
xmltodict = "^0.12.0"
2021-05-29 21:26:03 -07:00
typing-extensions = "^3.7.4"
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"
stackprinter = "^0.2.3"
2020-01-03 00:44:18 -07:00
[tool.black]
line-length = 88