forked from wagov/siem-query-utils
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (61 loc) · 1.47 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
[tool.black]
line-length = 100
skip-magic-trailing-comma = true
preview = true
[tool.ruff]
line-length = 120
[tool.poetry]
name = "siem-query-utils"
version = "2.1.3"
description = ""
authors = ["Adon Metcalfe <[email protected]>"]
readme = "README.md"
packages = [{ include = "siem_query_utils" }]
[tool.poetry.dependencies]
python = "^3.10"
fire = "^0.5.0"
cacheout = "^0.14.1"
markdown = "^3.4.1"
flatten-json = "^0.1.13"
pathvalidate = "^2.5.2"
httpx-cache = "^0.7.0"
cloudpathlib = { extras = ["azure"], version = "^0.12.1" }
azure-storage-blob = "^12.14.1"
esparto = "^4.2.0"
tinycss2 = "^1.2.1"
python-dotenv = "^0.21.1"
papermill = "^2.4.0"
azure-cli = "^2.44.1"
azure-kusto-data = {extras = ["pandas"], version = "^4.0.2"}
ipython = "^8.9.0"
python-dateutil = "^2.8.2"
ipywidgets = "^8.0.4"
seaborn = "^0.12.2"
httpx = "^0.23.3"
pandas = "^1.5.3"
requests = "^2.28.2"
starlette = "^0.22.0"
uvicorn = "^0.20.0"
fastapi = "^0.89.1"
itsdangerous = "^2.1.2"
weasyprint = "^57.2"
sigma-cli = "^0.5.3"
jupyterlab = "^3.6.1"
pyarrow = "^11.0.0"
jupytext = "^1.14.4"
pip = "^22.3.1"
prefect = "^2.7.11"
apscheduler = "^3.10.0"
jupyter = "^1.0.0"
ipykernel = "^6.21.1"
jupyter-cache = "^0.5.0"
[tool.poetry.scripts]
siem_query_utils = "siem_query_utils:cli"
[tool.poetry.group.dev.dependencies]
black = { version = "^22.12.0", allow-prereleases = true }
pytest = "^7.2.1"
poetry = "^1.3.2"
poetry-plugin-up = "^0.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"