generated from Lookyloo/project_template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.08 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
[project]
name = "lacus"
version = "1.13.0"
description = " A capturing system using playwright, as a web service."
authors = [{name="Raphaël Vinot", email="raphael.vinot@circl.lu"}]
license = "BSD-3-Clause"
readme = "README.md"
requires-python = "^3.9.2"
dependencies = [
"redis[hiredis] (>=5.2.1)",
"flask-restx (>=1.3.0)",
"werkzeug (>=3.1.3)",
"gunicorn[setproctitle] (>=23.0.0)",
"lacuscore (>=1.13.0)",
"rich (>=13.9.4)",
"psutil (>=7.0.0)"
]
[project.urls]
repository = "https://github.com/ail-project/Lacus"
[project.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"
capture_manager = "bin.capture_manager:main"
stop_capture_manager = "bin.stop_capture_manager:main"
scripts_controller = "bin.scripts_controller:main"
[tool.poetry.group.dev.dependencies]
mypy = "^1.15.0"
types-redis = "^4.6.0.20241004"
types-psutil = "^7.0.0.20250218"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"