-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (72 loc) · 1.54 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
[tool.poetry]
name = "MPSTITLE"
version = "0.1.0"
description = "MPSDESC"
authors = ["Milan van Wouden <[email protected]>"]
readme = "README.md"
packages = [{include = "MPSSRC"}]
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.group.dev.dependencies]
black = "^24.1.1"
flake8 = "^7.0.0"
isort = "^5.13.2"
mypy = "^1.8"
pre-commit = "^3.6.2"
pytest = "^8.1.1"
pyupgrade = "^3.15.2"
typeguard = "^4.2.1"
pytest-cov = "^5.0.0"
sphinx = "^7.2.6"
sphinx-rtd-theme = "^2.0.0"
flake8-bugbear = "^24.2.6"
flake8-bandit = "^4.1.1"
flake8-annotations = "^3.0.0"
darglint = "^1.8.1"
flake8-docstrings = "^1.6.0"
flake8-isort = "^6.1.1"
flake8-use-pathlib = "^0.3.0"
pep8-naming = "^0.13.3"
flake8-annotations-coverage = "^0.0.6"
flake8-simplify = "^0.21.0"
flake8-async = "^22.11.14"
flake8-encodings = "^0.5.1"
flake8-requirements = "^2.0.1"
flake8-return = "^1.2.0"
[build-system]
requires = ["poetry-core>=1.3.1"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = 3.11
packages = ["MPSSRC"]
check_untyped_defs = true
disallow_untyped_defs = true
disallow_any_unimported = true
no_implicit_optional = true
show_error_codes = true
warn_return_any = true
warn_unused_ignores = true
[tool.pytest]
minversion = 7
testpaths = ["tests"]
[tool.black]
line-length = 79
target-version = ["py311"]
include = '\.pyi?$'
exclude = '''
/(
| .git
| .mypy_cache
| .pytest_cache
| venv
| .venv
| build
| dist
)/
'''
[tool.isort]
py_version = 311
profile = "black"
line_length = 79
multi_line_output = 3
include_trailing_comma = true