-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
89 lines (74 loc) · 1.94 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
80
81
82
83
84
85
86
87
88
89
[tool.poetry]
name = "molecule-kind"
version = "0.1.0"
description = "molecule-kind - Molecule Kind Driver allows Molecule users to test Ansible code using Kind."
authors = [
"John Dewey <john@dewey.ws>",
]
maintainers = [
"John Dewey <john@dewey.ws>",
]
readme = "README.md"
homepage = "https://github.com/retr0h/molecule-kind"
repository = "https://github.com/retr0h/molecule-kind"
documentation = "https://github.com/retr0h/molecule-kind"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
keywords = [
"ansible",
"kind",
"k8s",
"kubernetes",
"testing",
"molecule",
]
[tool.poetry.dependencies]
python = ">=3.10"
[tool.poetry.dev-dependencies]
# molecule plugins are not allowed to mention Ansible as a direct dependency
black = "*"
coverage = {extras = ["toml"], version = "*"}
flake8 = "*"
isort = "*"
molecule = "^6.0.3"
pytest = "*"
pytest-clarity = "*"
pytest-cov = "*"
pytest-helpers-namespace = "*"
yamllint = "*"
[build-system]
requires = [
"poetry>=0.12",
]
build-backend = "poetry.masonry.api"
[tool.poetry.plugins]
[tool.poetry.plugins."molecule.driver"]
kind = "molecule_kind.driver:Kind"
[tool.black]
include = '\.pyi?$'
skip-string-normalization = true
[tool.pytest.ini_options]
testpaths = [
"molecule_kind/test/",
]
addopts = "-v -rxXs"
[tool.coverage.run]
omit = []
[tool.coverage.report]
fail_under = 100
[tool.isort]
force_single_line = true