-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1010 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 1010 Bytes
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
[project]
name = "project"
version = "0.1"
description = "Simple template used in most of the projects."
authors = [{name="Raphaël Vinot", email="raphael.vinot@circl.lu"}]
license = "BSD-3-Clause"
repository = "https://github.com/Lookyloo/project_template/"
requires-python = ">=3.12,<3.14"
readme = "README.md"
dynamic = [ "classifiers" ]
[tool.poetry]
classifiers = [
'Intended Audience :: Science/Research',
]
[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"
scripts_manager = "bin.scripts_manager:main"
[tool.poetry.dependencies]
flask-restx = "^1.3.2"
werkzeug = "^3.1.4"
gunicorn = "^23.0.0"
psutil = "^7.1.3"
valkey = {extras = ["libvalkey"], version = "^6.1.1"}
[tool.poetry.group.dev.dependencies]
mypy = "^1.19.0"
types-psutil = "^7.1.3.20251202"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"