-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 1.02 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
[tool.poetry]
name = "abm-amro-exercise"
version = "0.1.0"
description = ""
authors = ["eltbus <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^1.4.3"
fastapi = "^0.78.0"
uvicorn = "^0.18.2"
PyYAML = "^6.0"
python-multipart = "^0.0.5"
aiofiles = "^0.8.0"
types-PyYAML = "^6.0.9"
[tool.poetry.group.dev.dependencies]
isort = "^5.10.1"
black = "^22.3.0"
flake8 = "^4.0.1"
pydocstyle = "^6.1.1"
mypy = "^0.950"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.2"
pytest-mock = "^3.8.1"
pytest-cov = "^3.0.0"
requests = "^2.28.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
float_to_top = true
include_trailing_comma = true
line_length = 120
multi_line_output = 3
use_parentheses = true
skip_gitignore = true
[tool.mypy]
ignore_missing_imports = true
[tool.pyright]
reportMissingImports = false
reportMissingTypeStubs = false
reportUnboundVariable = false
reportMissingModuleSource = false
reportUnusedFunction = true