-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1 KB
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 1 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
[project]
name = "lfweb"
version = "0.1.0"
description = "Website for Lejre Fitness"
authors = [{ name = "Carsten Skov", email = "carsten@simcax.dk" }]
requires-python = "~=3.11"
readme = "README.md"
dependencies = [
"flask>=3.1.0",
"flask-session>0.6.0",
"gunicorn>=23.0.0,<24",
"Jinja2>=3.1.3,<4",
"redis>=5.0.1,<6",
"loguru>=0.7.2,<0.8",
"werkzeug>=3.1.0",
"foreninglet-data>=0.3.3",
"markdown>=3.5.2,<4",
"markupsafe>=2.1.5,<3",
"sentry-sdk>=2.8.0",
"pyyaml>=6.0.2,<7",
"python-dotenv>=1.0.1,<2",
"testcontainers-postgres>=0.0.1rc1",
"psycopg2-binary>=2.9.10",
"sqlalchemy-utils>=0.41.2",
"bs4>=0.0.2",
]
[dependency-groups]
dev = [
"black>=23.12.1,<24",
"docker>=7.0.0,<8",
"pytest>=7.4.4,<8",
"testcontainers-redis>=0.0.1rc1,<0.0.2",
"pylint>=3.0.3,<4",
"pytest-cov>=4.1.0,<5",
"toml>=0.10.2",
]
[tool.pytest.ini_options]
markers = [
"integration: marks tests as integration tests that may require external services",
]