2020-12-28 15:21:51 +00:00
|
|
|
[tool.poetry]
|
|
|
|
authors = ["Robert Kaussow <mail@thegeeklab.de>"]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Intended Audience :: Information Technology",
|
|
|
|
"Intended Audience :: System Administrators",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
2021-10-07 07:52:48 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2022-11-24 14:45:42 +00:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2023-10-16 12:15:26 +00:00
|
|
|
"Programming Language :: Python :: 3.12",
|
2020-12-28 15:21:51 +00:00
|
|
|
"Topic :: Utilities",
|
|
|
|
"Topic :: Software Development",
|
|
|
|
]
|
|
|
|
description = "Reviews ansible playbooks, roles and inventories and suggests improvements."
|
|
|
|
documentation = "https://ansible-later.geekdocs.de/"
|
|
|
|
homepage = "https://ansible-later.geekdocs.de/"
|
2024-01-27 17:20:15 +00:00
|
|
|
include = ["LICENSE"]
|
2020-12-28 15:21:51 +00:00
|
|
|
keywords = ["ansible", "code", "review"]
|
|
|
|
license = "MIT"
|
|
|
|
name = "ansible-later"
|
2024-01-27 17:20:15 +00:00
|
|
|
packages = [{ include = "ansiblelater" }]
|
2020-12-28 15:21:51 +00:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/thegeeklab/ansible-later/"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-07-19 08:07:21 +00:00
|
|
|
PyYAML = "6.0.1"
|
2024-05-24 07:44:32 +00:00
|
|
|
ansible-core = { version = "2.14.17", optional = true }
|
2024-01-27 17:20:15 +00:00
|
|
|
ansible = { version = "7.7.0", optional = true }
|
2024-01-31 09:50:12 +00:00
|
|
|
anyconfig = "0.14.0"
|
2021-05-10 20:18:36 +00:00
|
|
|
appdirs = "1.4.4"
|
2022-10-25 19:29:08 +00:00
|
|
|
colorama = "0.4.6"
|
2024-07-09 06:16:02 +00:00
|
|
|
jsonschema = "4.23.0"
|
2022-07-11 06:48:55 +00:00
|
|
|
nested-lookup = "0.2.25"
|
2023-12-12 08:22:14 +00:00
|
|
|
pathspec = "0.12.1"
|
2022-11-24 14:45:42 +00:00
|
|
|
python = "^3.9.0"
|
2023-03-02 07:29:05 +00:00
|
|
|
python-json-logger = "2.0.7"
|
2024-01-25 21:40:01 +00:00
|
|
|
toolz = "0.12.1"
|
2023-03-20 09:36:00 +00:00
|
|
|
unidiff = "0.7.5"
|
2024-02-16 12:56:52 +00:00
|
|
|
yamllint = "1.35.1"
|
2020-12-28 15:21:51 +00:00
|
|
|
|
2020-12-28 17:05:00 +00:00
|
|
|
[tool.poetry.extras]
|
2024-01-26 09:20:48 +00:00
|
|
|
ansible = ["ansible"]
|
2021-10-11 20:34:34 +00:00
|
|
|
ansible-core = ["ansible-core"]
|
2020-12-28 17:05:00 +00:00
|
|
|
|
2020-12-28 15:21:51 +00:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
ansible-later = "ansiblelater.__main__:main"
|
|
|
|
|
2023-02-10 07:51:17 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-07-22 01:56:36 +00:00
|
|
|
ruff = "0.5.4"
|
|
|
|
pytest = "8.3.1"
|
2024-03-25 00:23:42 +00:00
|
|
|
pytest-mock = "3.14.0"
|
2024-03-25 07:34:14 +00:00
|
|
|
pytest-cov = "5.0.0"
|
2023-02-10 07:51:17 +00:00
|
|
|
toml = "0.10.2"
|
|
|
|
|
2020-12-28 15:21:51 +00:00
|
|
|
[tool.poetry-dynamic-versioning]
|
|
|
|
enable = true
|
|
|
|
style = "semver"
|
|
|
|
vcs = "git"
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
2023-04-19 18:53:08 +00:00
|
|
|
addopts = "ansiblelater --cov=ansiblelater --cov-report=xml:coverage.xml --cov-report=term --no-cov-on-fail"
|
2020-12-28 15:21:51 +00:00
|
|
|
filterwarnings = [
|
|
|
|
"ignore::FutureWarning",
|
2023-02-10 07:51:17 +00:00
|
|
|
"ignore::DeprecationWarning",
|
2020-12-28 15:21:51 +00:00
|
|
|
"ignore:.*pep8.*:FutureWarning",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
omit = ["**/test/*"]
|
|
|
|
|
|
|
|
[build-system]
|
2023-08-24 22:27:05 +00:00
|
|
|
build-backend = "poetry_dynamic_versioning.backend"
|
2020-12-28 15:21:51 +00:00
|
|
|
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
|
2023-02-10 07:51:17 +00:00
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
exclude = [
|
2024-01-27 17:20:15 +00:00
|
|
|
".git",
|
|
|
|
"__pycache__",
|
|
|
|
"build",
|
|
|
|
"dist",
|
|
|
|
"test",
|
|
|
|
"*.pyc",
|
|
|
|
"*.egg-info",
|
|
|
|
".cache",
|
|
|
|
".eggs",
|
|
|
|
"env*",
|
2023-02-10 07:51:17 +00:00
|
|
|
]
|
2023-11-10 13:50:48 +00:00
|
|
|
|
|
|
|
line-length = 99
|
|
|
|
indent-width = 4
|
|
|
|
|
2024-02-06 08:34:20 +00:00
|
|
|
[tool.ruff.lint]
|
2023-02-10 07:51:17 +00:00
|
|
|
# Explanation of errors
|
|
|
|
#
|
|
|
|
# D100: Missing docstring in public module
|
|
|
|
# D101: Missing docstring in public class
|
|
|
|
# D102: Missing docstring in public method
|
|
|
|
# D103: Missing docstring in public function
|
|
|
|
# D105: Missing docstring in magic method
|
|
|
|
# D107: Missing docstring in __init__
|
|
|
|
# D202: No blank lines allowed after function docstring
|
|
|
|
# D203: One blank line required before class docstring
|
|
|
|
# D212: Multi-line docstring summary should start at the first line
|
|
|
|
ignore = [
|
2024-01-27 17:20:15 +00:00
|
|
|
"D100",
|
|
|
|
"D101",
|
|
|
|
"D102",
|
|
|
|
"D103",
|
|
|
|
"D105",
|
|
|
|
"D107",
|
|
|
|
"D202",
|
|
|
|
"D203",
|
|
|
|
"D212",
|
|
|
|
"UP038",
|
|
|
|
"RUF012",
|
2023-02-10 07:51:17 +00:00
|
|
|
]
|
|
|
|
select = [
|
2024-01-27 17:20:15 +00:00
|
|
|
"D",
|
|
|
|
"E",
|
|
|
|
"F",
|
|
|
|
"Q",
|
|
|
|
"W",
|
|
|
|
"I",
|
|
|
|
"S",
|
|
|
|
"BLE",
|
|
|
|
"N",
|
|
|
|
"UP",
|
|
|
|
"B",
|
|
|
|
"A",
|
|
|
|
"C4",
|
|
|
|
"T20",
|
|
|
|
"SIM",
|
|
|
|
"RET",
|
|
|
|
"ARG",
|
|
|
|
"ERA",
|
|
|
|
"RUF",
|
2023-02-10 07:51:17 +00:00
|
|
|
]
|
|
|
|
|
2023-11-10 13:50:48 +00:00
|
|
|
[tool.ruff.format]
|
|
|
|
quote-style = "double"
|
|
|
|
indent-style = "space"
|
|
|
|
line-ending = "lf"
|