-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (56 loc) · 1.61 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
[tool.poetry]
name = "fdk-organization-bff"
version = "0.1.0"
description = "Backend-for-frontend service that provides content for fdk portal's organization pages. "
authors = ["Nils Ove Tendenes <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/Informasjonsforvaltning/fdk-organization-bff"
repository = "https://github.com/Informasjonsforvaltning/fdk-organization-bff"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.9"
gunicorn = "^23.0.0"
python-dotenv = "^1.0.0"
requests = "^2.32.3"
aiohttp = "^3.10.5"
python-json-logger = "^2.0.7"
aiohttp-middlewares = "^2.4.0"
[tool.poetry.dev-dependencies]
asynctest = "^0.13.0"
pytest = "^8.3.2"
coverage = {extras = ["toml"], version = "^7.6.1"}
pytest-asyncio = "^0.24.0"
pytest-dotenv = "^0.5.2"
pytest-docker = "^3.1.1"
pytest-cov = "^5.0.0"
black = "^24.8.0"
flake8 = "^7.1.1"
flake8-bandit = "^4.1.1"
flake8-black = "^0.3.6"
flake8-bugbear = "^24.8.19"
flake8-docstrings = "^1.7.0"
flake8-import-order = "^0.18.2"
pep8-naming = "^0.14.1"
mypy = "1.11.2"
flake8-annotations = "^3.1.1"
codecov = "^2.1.13"
requests-mock = "^1.11.0"
pytest-mock = "^3.12.0"
pytest-aiohttp = "^1.0.5"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = false
source = ["fdk_organization_bff"]
omit = ["*__init__.py", "*gunicorn_config.py"]
[tool.coverage.report]
show_missing = true
fail_under = 90
[build-system]
requires = ["poetry>=1.1.14"]
build-backend = "poetry.masonry.api"