-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (79 loc) · 2.31 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# SPDX-FileCopyrightText: Magenta ApS <https://magenta.dk>
# SPDX-License-Identifier: MPL-2.0
[tool.poetry]
name = "OS2mo"
version = "0.0.0" # versioning handled by conventional commits
authors = ["Magenta ApS <info@magenta.dk>"]
description = "OS2mo - Medarbejder og Organisation"
license = "MPL-2.0"
documentation = "https://os2mo.readthedocs.io"
readme = "README.md"
homepage = "https://magenta.dk/"
repository = "https://git.magenta.dk/rammearkitektur/os2mo"
keywords = ["os2mo"]
[tool.poetry.dependencies]
python = "^3.11"
alembic = "^1.13.3"
python-dateutil = "^2.8.2"
# Version 2.9.x always starts a transaction when you connect to a database using a context manager.
# See: https://stackoverflow.com/a/68112827
gunicorn = "^23.0.0"
PyJWT = {extras = ["crypto"], version = "^2.9.0"}
more-itertools = "^9.1.0"
SQLAlchemy = "2.0.36"
SQLAlchemy-Utils = "^0.41.2"
aiohttp = "^3.10.10"
httpx = "^0.27.2"
os2mo-http-trigger-protocol = "^0.0.4"
fastapi = "^0.112.0"
Jinja2 = "^3.1.2"
starlette-context = "^0.3.6"
click = "^8.1.7"
structlog = "^23.1.0"
python-multipart = "^0.0.9"
prometheus-fastapi-instrumentator = "^6.1.0"
pydantic = {extras = ["email"], version = "^1.10.13"}
os2mo-dar-client = "^1.0.4"
ra-utils = "^1.14.0"
uvicorn = "^0.23.2"
strawberry-graphql = "^0.237.1"
jsonschema = "^4.20.0"
sentry-sdk = {extras = ["fastapi"], version = "^1.34.0"}
psycopg = "^3.1.13"
service-person-stamdata-udvidet = "^1.0.3"
fastramqpi = "^8"
[tool.poetry.group.dev.dependencies]
requests-mock = "^1.11.0"
freezegun = "^1.2.2"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
aioresponses = "^0.7.4"
parameterized = "^0.9.0"
hypothesis = "^6.82.0"
pytest-asyncio = "^0.23.5"
hypothesis-graphql = "^0.10.0"
pytest-split = "^0.8.1"
pre-commit = "^3.3.3"
"tap.py" = "^3.1"
asgi-lifespan = "^2.1.0"
pytest-timeouts = "^1.2.1"
pytest-subtests = "^0.11.0"
respx = "^0.21.1"
pytest-randomly = "^3.15.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"integration_test: mark test as an integration test",
]
filterwarnings = ["ignore::pytest.PytestCacheWarning"]
asyncio_mode = "auto"
cache_dir = ".pytest_cache"
[tool.mypy]
ignore_errors = true
plugins = ["pydantic.mypy", "strawberry.ext.mypy_plugin"]
[[tool.mypy.overrides]]
module = "mora.graphapi.*"
disallow_untyped_defs = true
ignore_errors = false