-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (65 loc) · 1.63 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
[tool.black]
line-length = 120
target-version = ['py310']
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
[tool.flake8]
max-line-length = 120
max-doc-length = 140
use_class_attributes_order_strict_mode = true
[tool.mypy]
show_error_codes = true
pretty = true
show_error_context = true
show_column_numbers = true
warn_unused_ignores = true
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = "assertpy"
ignore_missing_imports = true
[tool.pytest.ini_options]
pythonpath = "src/"
asyncio_mode = "auto"
[tool.coverage.run]
omit = ["tests/*"]
[tool.coverage.report]
exclude_lines = ["pass"]
[tool.poetry]
name = "mediatpy"
version = "0.2.1"
description = "Mediator implementation in Python"
authors = ["Sergio León <[email protected]>"]
readme = "README.md"
repository = "https://github.com/panicoenlaxbox/mediatpy"
documentation = "https://mediatpy.readthedocs.io/en/latest/"
keywords = ["mediator"]
packages = [{ include = "mediatpy", from = "src" }]
classifiers = [
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
mypy = "^0.990"
pytest = "^7.2.0"
black = "^22.10.0"
isort = "^5.10.1"
flake8 = "^5.0.4"
assertpy = "^1.1"
pre-commit = "^2.20.0"
flake8-class-attributes-order = "^0.1.3"
pytest-asyncio = "^0.20.1"
pytest-cov = "^4.0.0"
flake8-pyproject = "^1.1.0.post0"
bandit = "^1.7.4"
sphinx = "^5.3.0"
sphinx-autodoc-typehints = "^1.19.5"
sphinx-rtd-theme = "^1.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"