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.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
2021-10-07 07:52:48 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
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/"
|
|
|
|
include = [
|
|
|
|
"LICENSE",
|
|
|
|
]
|
|
|
|
keywords = ["ansible", "code", "review"]
|
|
|
|
license = "MIT"
|
|
|
|
name = "ansible-later"
|
|
|
|
packages = [
|
|
|
|
{include = "ansiblelater"},
|
|
|
|
]
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/thegeeklab/ansible-later/"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2021-10-15 08:40:18 +00:00
|
|
|
PyYAML = "6.0"
|
2022-11-09 08:44:51 +00:00
|
|
|
ansible = {version = "6.6.0", optional = true}
|
2022-11-08 11:06:35 +00:00
|
|
|
ansible-core = {version = "2.13.6", optional = true}
|
2022-04-04 07:04:48 +00:00
|
|
|
anyconfig = "0.13.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"
|
2022-08-22 06:39:36 +00:00
|
|
|
flake8 = "5.0.4"
|
2022-11-02 09:02:01 +00:00
|
|
|
jsonschema = "4.17.0"
|
2022-07-11 06:48:55 +00:00
|
|
|
nested-lookup = "0.2.25"
|
2022-09-05 18:37:46 +00:00
|
|
|
pathspec = "0.10.1"
|
2021-11-16 08:36:24 +00:00
|
|
|
python = "^3.8.0"
|
2022-07-13 10:25:39 +00:00
|
|
|
python-json-logger = "2.0.4"
|
2022-07-11 11:28:15 +00:00
|
|
|
toolz = "0.12.0"
|
2022-06-27 07:18:14 +00:00
|
|
|
unidiff = "0.7.4"
|
2022-09-13 09:40:45 +00:00
|
|
|
yamllint = "1.28.0"
|
2020-12-28 15:21:51 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2022-03-07 00:21:26 +00:00
|
|
|
bandit = "1.7.4"
|
2022-03-21 01:29:38 +00:00
|
|
|
flake8-blind-except = "0.2.1"
|
2022-10-09 14:30:56 +00:00
|
|
|
flake8-builtins = "2.0.0"
|
2021-05-11 21:03:09 +00:00
|
|
|
flake8-docstrings = "1.6.0"
|
2022-08-21 20:48:29 +00:00
|
|
|
flake8-eradicate = "1.3.0"
|
2022-10-09 09:35:00 +00:00
|
|
|
flake8-isort = "5.0.0"
|
2022-08-21 20:48:29 +00:00
|
|
|
flake8-logging-format = "0.7.5"
|
2022-10-09 11:41:39 +00:00
|
|
|
flake8-pep3101 = "2.0.0"
|
2021-05-10 20:18:36 +00:00
|
|
|
flake8-polyfill = "1.0.2"
|
2021-10-20 14:02:56 +00:00
|
|
|
flake8-quotes = "3.3.1"
|
2022-08-21 20:48:29 +00:00
|
|
|
pep8-naming = "0.13.2"
|
2021-05-17 21:56:35 +00:00
|
|
|
pydocstyle = "6.1.1"
|
2022-05-02 00:07:11 +00:00
|
|
|
pytest = "7.1.2"
|
2022-09-29 06:54:36 +00:00
|
|
|
pytest-cov = "4.0.0"
|
2022-07-11 02:15:12 +00:00
|
|
|
pytest-mock = "3.8.2"
|
2022-02-08 12:00:44 +00:00
|
|
|
tomli = "2.0.1"
|
2021-12-26 08:38:23 +00:00
|
|
|
yapf = "0.32.0"
|
2022-02-05 14:01:36 +00:00
|
|
|
toml = "0.10.2"
|
2020-12-28 15:21:51 +00:00
|
|
|
|
2020-12-28 17:05:00 +00:00
|
|
|
[tool.poetry.extras]
|
|
|
|
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"
|
|
|
|
|
|
|
|
[tool.poetry-dynamic-versioning]
|
|
|
|
enable = true
|
|
|
|
style = "semver"
|
|
|
|
vcs = "git"
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
default_section = "THIRDPARTY"
|
|
|
|
force_single_line = true
|
|
|
|
line_length = 99
|
|
|
|
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
|
2021-01-03 20:43:56 +00:00
|
|
|
skip_glob = ["**/.env*", "**/env/*", "**/.venv/*", "**/docs/*"]
|
2020-12-28 15:21:51 +00:00
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
2021-01-01 15:28:55 +00:00
|
|
|
addopts = "ansiblelater --cov=ansiblelater --cov-report=xml:coverage.xml --cov-report=term --cov-append --no-cov-on-fail"
|
2020-12-28 15:21:51 +00:00
|
|
|
filterwarnings = [
|
|
|
|
"ignore::FutureWarning",
|
|
|
|
"ignore:.*collections.*:DeprecationWarning",
|
|
|
|
"ignore:.*pep8.*:FutureWarning",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
omit = ["**/test/*"]
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
|