-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.43 KB
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
[tool.poetry]
name = "webmonitoring"
version = "1.2.0"
description = "Monitoring websites, with Lookyloo as a backend."
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
license = "BSD-3-Clause"
[tool.poetry.scripts]
start = "bin.start:main"
stop = "bin.stop:main"
update = "bin.update:main"
shutdown = "bin.shutdown:main"
run_backend = "bin.run_backend:main"
start_website = "bin.start_website:main"
monitoring_queue_manager = "bin.monitoring_queue_manager:main"
notification_manager = "bin.notification_manager:main"
run_captures = "bin.run_captures:main"
scripts_controller = "bin.scripts_controller:main"
[tool.poetry.dependencies]
python = "^3.10,<3.15"
redis = {version = "^5.3.0,<6.0", extras = ["hiredis"]}
flask-restx = "^1.3.2"
werkzeug = "^3.1.6"
gunicorn = "^25.1.0"
cron-converter = "^1.3.1"
bootstrap-flask = "^2.5.0"
pylookyloo = "^1.37.0"
flask-wtf = "^1.2.2"
flask-login = "^0.6.3"
defang = "^0.5.3"
psutil = "^7.2.2"
dateparser = "^1.3.0"
pydantic = "^2.12.5"
lookyloo-models = "^0.1.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.19.1"
types-redis = {version = "^4.6.0.20241004"}
types-requests = "^2.32.4.20260107"
types-psutil = "^7.2.2.20260130"
types-dateparser = "^1.3.0.20260323"
[tool.poetry.group.old]
optional = true
[tool.poetry.group.old.dependencies]
plotly = "^6.1.2"
jupyter-dash = "^0.4.2"
jupyterlab = "^4.2.5"
pandas = "^2.2.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"