-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (61 loc) · 1.57 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
[tool.poetry]
name = "pass-operator"
version = "0.0.1"
description = "A Kubernetes operator that syncs and decrypts secrets from pass store git repositories"
authors = ["Emma Doyle <emma@premiscale.com>"]
maintainers = ["Emma Doyle <emma@premiscale.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
packages = [
{ include = "passoperator", from = "src" },
]
include = [
"LICENSE"
]
keywords = [
"python",
"kubernetes",
"secrets",
"operator",
"pass"
]
[tool.poetry.dependencies]
python = "^3.10"
kubernetes = "^29.0.0"
kopf = "^1.37.2"
python-gnupg = "^0.5.2"
gitpython = "^3.1.43"
pyhumps = "^3.8.0"
attrs = "^23.2.0"
cattrs = "^23.2.3"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.2"
poetry = "^1.8.3"
mypy = "^1.10.0"
pylint = "^3.2.1"
pytest = "^8.2.0"
coverage = "^7.5.1"
deepdiff = "^7.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
passoperator = "passoperator.daemon:main"
[tool.mypy]
python_version = "3.10"
strict_optional = "true"
ignore_missing_imports = "true"
[tool.coverage.run]
# omit = [".*", "*/site-packages/*"]
[tool.coverage.report]
fail_under = 60
[tool.pytest.ini_options]
addopts = "--junitxml=./junit_test_results.xml"
testpaths = [
"src/tests/"
]
[tool.pylint."MESSAGES CONTROL"]
disable = "too-many-arguments,invalid-name,wrong-import-order,superfluous-parens,line-too-long,missing-final-newline,logging-fstring-interpolation,too-many-instance-attributes,unused-argument,unused-import"
fail-under = 9
[tool.pylint.MASTER]
init-hook = "import sys; sys.path.append('.')"