generated from Lookyloo/project_template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
44 lines (39 loc) · 1.19 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
[tool.poetry]
name = "lacus"
version = "1.12.0"
description = " A capturing system using playwright, as a web service."
authors = ["Raphaël Vinot <[email protected]>"]
license = "BSD-3-Clause"
repository = "https://github.com/ail-project/Lacus"
[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"
capture_manager = "bin.capture_manager:main"
stop_capture_manager = "bin.stop_capture_manager:main"
scripts_controller = "bin.scripts_controller:main"
[tool.poetry.dependencies]
python = "^3.9"
redis = {version = "^5.2.0", extras = ["hiredis"]}
flask-restx = "^1.3.0"
werkzeug = "^3.1.3"
gunicorn = {version = "^23.0.0", extras = ["setproctitle"]}
lacuscore = "^1.12.6"
rich = "^13.9.4"
psutil = "^6.1.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ipython = [
{version = "^8.18.0", python = "<3.10"},
{version = "^8.19.0", python = ">=3.10"}
]
mypy = "^1.13.0"
types-redis = "^4.6.0.20241004"
types-psutil = "^6.1.0.20241102"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"