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

68 lines
1.4 KiB
TOML
Raw Normal View History

2020-01-03 00:44:18 -07:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "hyperglass"
version = "1.0.0"
description = "hyperglass is a modern, customizable network looking glass written in Python 3."
2020-02-13 18:27:33 -07:00
authors = ["Matt Love <matt@hyperglass.io>"]
2020-01-03 00:44:18 -07:00
license = "BSD-3-Clause-Clear"
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-01-20 00:37:50 -07:00
aiofile = "^1.5.2"
2020-02-13 18:27:33 -07:00
aiofiles = "^0.4.0"
2020-01-03 00:44:18 -07:00
aredis = "^1.1.7"
click = "^7.0"
cryptography = "^2.8"
2020-01-20 00:37:50 -07:00
fastapi = "^0.47.1"
2020-01-03 00:44:18 -07:00
hiredis = "^1.0.1"
2020-02-13 22:34:55 -07:00
httpx = "^0.11"
2020-01-03 00:44:18 -07:00
loguru = "^0.4.0"
netmiko = "^2.4.2"
2020-01-20 00:37:50 -07:00
Pillow = "^7.0.0"
2020-01-03 00:44:18 -07:00
prometheus_client = "^0.7.1"
pydantic = "^1.3"
PyJWT = "^1.7.1"
2020-02-13 22:00:03 -07:00
python = "^3.6"
2020-01-03 00:44:18 -07:00
PyYAML = "^5.2"
redis = "^3.3.11"
2020-02-13 18:27:33 -07:00
rich = "^0.3.3"
2020-01-03 00:44:18 -07:00
sshtunnel = "^0.1.5"
stackprinter = "^0.2.3"
2020-01-20 00:37:50 -07:00
ujson = "^1.35"
uvicorn = "^0.11.1"
2020-01-03 00:44:18 -07:00
uvloop = "^0.14.0"
[tool.poetry.dev-dependencies]
anybadge = "^1.6.2"
bandit = "^1.6.2"
2020-02-13 18:27:33 -07:00
black = "^19.10b0"
2020-01-03 00:44:18 -07:00
flake8 = "^3.7.9"
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"
flake8-isort = "^2.8.0"
flake8-pie = "^0.4.2"
flake8-plugin-utils = "^1.0.0"
flake8-polyfill = "^1.0.2"
flake8-print = "^3.1.4"
flake8-return = "^1.1.1"
2020-02-13 18:27:33 -07:00
isort = "^4.3.21"
mccabe = "^0.6.1"
2020-01-03 00:44:18 -07:00
pep8-naming = "^0.9.1"
pre-commit = "^1.21.0"
[tool.black]
line-length = 88