-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.32 KB
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
[tool.poetry]
name = "im-data-manager-workflow-engine"
version = "1.0.0"
description = "The Data Manager workflow engine, schema and decoder."
authors = [
"Alan Christie <achristie@informaticsmatters.com>",
"Kalev Takkis <ktakkis@informaticsmatters.com>"
]
readme = "README.rst"
packages = [
{ include = "workflow", from = "." }
]
[tool.poetry.dependencies]
python = "^3.12"
im-protobuf = "^8.2.0"
im-data-manager-job-decoder = "^2.5.0"
jsonschema = "^4.21.1"
pyyaml = ">= 5.3.1, < 7.0"
[tool.poetry.group.dev.dependencies]
coverage = "^7.6.2"
pre-commit = "^3.7.0"
pytest = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
omit = [
"tests/*",
]
[tool.mypy]
strict = true
disallow_untyped_decorators = false
disallow_subclassing_any = false
implicit_reexport = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_ignores = true
[tool.pylint]
disable = [
"fixme",
"R",
"too-few-public-methods",
"too-many-arguments",
]
ignored-classes = [
"PodMessage",
]
ignored-modules = [
"informaticsmatters.protobuf",
]