-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (47 loc) · 986 Bytes
/
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
[tool.poetry]
name = "oda-wd-client"
version = "0.2.3"
description = "A library for interacting with Workday from Python"
authors = [
"Karl Fredrik Haugland <[email protected]>",
]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
pydantic = "^2"
suds-py3 = "^1.4.5.0"
pre-commit = "^3.3.3"
yamllint = "^1.32.0"
python-magic = "^0.4.27"
[tool.poetry.group.dev.dependencies]
ipython = "^7.30.1"
isort = "^5.12.0"
mypy = "^1.4.1"
flake8 = "^6.0.0"
black = "^23.7.0"
[tool.black]
target_version = ['py311']
include = '\.pyi?$'
safe = true
exclude = '''
/(
\.git
| __pycache__
| \.venv
)/
'''
[tool.isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = true
use_parentheses = true
group_by_package = true
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
[tool.mypy]
ignore_missing_imports = true
plugins = [
"pydantic.mypy"
]
[tool.pydantic-mypy]
init_forbid_extra = true
init_typed = true
warn_required_dynamic_aliases = true