-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1013 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1013 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
41
42
43
44
45
46
[project]
name = "gl-mitid"
version = "0.0.0" # versioning handled by conventional commits
description = "MitID middle layer"
authors = [
{name = "Magenta ApS", email="info@magenta.dk"}
]
license = "MPL-2.0"
readme = "README.md"
homepage = "https://magenta.dk/"
repository = "https://git.magenta.dk/gronlandsprojekter/gldjangologin"
keywords = []
requires-python = ">=3.11,<4.0"
dependencies = [
"xmltodict==1.0.4",
"django>=5",
"pysaml2==7.5.4",
]
[tool.poetry]
packages = [{include = "django_mitid_auth"}]
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.test.dependencies]
coverage = "7.13.4"
mypy = "1.19.1"
pydantic = "2.12.5"
types-xmltodict = "1.0.1.20260113"
types-requests = "2.32.4.20260107"
types-pysaml2 = "1.0.1"
django-types = "0.23.0"
[tool.mypy]
python_version = "3.12"
warn_return_any = "True"
warn_unused_configs = "True"
plugins = "pydantic.mypy"
[tool.coverage.run]
omit = []
[tool.coverage.report]
omit = []