-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 837 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 837 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mchub"
version = "10.2.7"
description = ""
authors = [
{ name = "Frédéric Fortier-Chouinard" },
{ name = "Félix-Antoine Fortin", email = "felix-antoine.fortin@calculquebec.ca" },
]
requires-python = "~=3.13.0"
license = "BSD-3-Clause"
dependencies = [
"Flask>=2.2.0,<3",
"Flask-SQLAlchemy>=3.0.3,<4",
"SQLAlchemy>=2.0.5,<3",
"humanize>=4.0.0,<5",
"marshmallow~=3.19.0",
"openstacksdk>=1.0.0,<2",
"jsonpath-ng~=1.5.3",
"Flask-Cors~=3.0.10",
"cachetools>=6.2.1,<7",
"pygithub>=2.8.1,<3",
"gunicorn[gevent]>=20.1.0",
"flask-migrate>=4.0.0,<5",
]
[dependency-groups]
dev = [
"pytest>=7.2.2,<8",
"pytest-flask>=1.2.0,<2",
"pytest-mock>=3.10.0,<4",
"freezegun>=1.2.2,<2",
]