forked from netenglabs/suzieq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
83 lines (78 loc) · 2.01 KB
/
pyproject.toml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[tool.poetry]
name = "suzieq"
version = "0.16.0"
description = "A framework and application for network observability"
readme = 'README.md'
repository = 'https://github.com/netenglabs/suzieq'
documentation = 'https://suzieq.readthedocs.io'
authors = ['suzieq dev team']
maintainers = ['suzieq dev team']
keywords = ['network', 'Cisco', 'Arista', 'Junos', 'observability', 'Cumulus', 'monitoring', 'SoNIC', 'IOS']
license = 'Apache-2.0'
homepage = 'https://www.stardustsystems.net/suzieq/'
classifiers = [
'Topic :: System :: Networking :: Monitoring'
]
[tool.poetry.dependencies]
python = ">3.7.1, < 3.9"
aiohttp = "==3.7.4"
asyncssh = "^2.7"
textfsm = "*"
async-timeout = "*"
aiofiles = "*"
prompt-toolkit = ">2"
pyarrow = "5.0.0"
pandas = "1.3.4"
PyYAML = "*"
python-nubia = "0.2b5"
uvloop = "*"
networkx = "^2.4"
matplotlib = "^3.2.2"
faker = "^4.1.1"
netconan = "^0.11.2"
jsonpath-ng = "^1.5.1"
fastapi = "^0.65"
uvicorn = "^0.14.0"
tabulate = "^0.8.7"
streamlit = "1.3.1"
graphviz = "^0.15"
dateparser = "^1.0.0"
natsort = "^7.1.1"
colorama = "^0.4.4"
tzlocal = "< 3.0"
pyparsing = ">=2.2.0, <3.0"
xmltodict = "^0.12.0"
streamlit-aggrid = "^0.2.2"
[tool.poetry.dev-dependencies]
pylint = "*"
autopep8 = "*"
rope = "*"
jedi = "~0.17.2"
flake8 = "*"
ipdb = "*"
pycscope = "*"
pytest = "*"
pytest-cov = "*"
pytest-xdist = "*"
pytest-asyncio = "*"
pytest-mock = "*"
mock = "*"
pytest-depends = "^1.0.1"
bandit = "^1.6.2"
pytest-icdiff = "^0.5"
ipython = "~=7.15.0"
requests = "^2.24.0"
sphinx-autodoc-typehints = "^1.11.1"
filelock = "^3.0.12"
isort = "^5.10.1"
[tool.poetry.scripts]
sq-poller = 'suzieq.poller.sq_poller:controller_main'
sq-rest-server = 'suzieq.restServer.sq_rest_server:rest_main'
sq-coalescer = 'suzieq.utilities.sq_coalescer:coalescer_main'
sq-anonymizer = 'suzieq.utilities.sq_anonymizer:anonymizer_main'
sq-simnodes = 'suzieq.utilities.sq_simnode:simnodes_main'
suzieq-cli = 'suzieq.cli.sq_cli:cli_main'
suzieq-gui = 'suzieq.gui.sq_gui:gui_main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"