2020-12-31 13:16:00 +00:00
|
|
|
[tool.poetry]
|
|
|
|
authors = ["Robert Kaussow <mail@thegeeklab.de>"]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
"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.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
2021-10-07 07:52:45 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2020-12-31 13:16:00 +00:00
|
|
|
"Topic :: Utilities",
|
|
|
|
"Topic :: Software Development",
|
|
|
|
"Topic :: Software Development :: Documentation",
|
|
|
|
]
|
|
|
|
description = "Generate documentation from annotated Ansible roles using templates."
|
|
|
|
documentation = "https://ansible-doctor.geekdocs.de/"
|
|
|
|
homepage = "https://ansible-doctor.geekdocs.de/"
|
|
|
|
include = [
|
|
|
|
"LICENSE",
|
|
|
|
]
|
2021-01-01 13:51:16 +00:00
|
|
|
keywords = ["ansible", "role", "documentation"]
|
2020-12-31 13:16:00 +00:00
|
|
|
license = "GPL-3.0-only"
|
|
|
|
name = "ansible-doctor"
|
|
|
|
packages = [
|
|
|
|
{include = "ansibledoctor"},
|
|
|
|
]
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/thegeeklab/ansible-doctor/"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-03-27 11:13:34 +00:00
|
|
|
Jinja2 = "3.1.1"
|
2021-09-20 07:53:02 +00:00
|
|
|
anyconfig = "0.12.0"
|
2021-05-10 20:05:15 +00:00
|
|
|
appdirs = "1.4.4"
|
|
|
|
colorama = "0.4.4"
|
2022-02-01 08:17:27 +00:00
|
|
|
environs = "9.5.0"
|
2022-01-21 20:27:24 +00:00
|
|
|
jsonschema = "4.4.0"
|
2021-11-10 07:43:09 +00:00
|
|
|
nested-lookup = "0.2.23"
|
2021-07-19 12:45:10 +00:00
|
|
|
pathspec = "0.9.0"
|
2021-10-03 14:10:22 +00:00
|
|
|
python = "^3.7.0"
|
2021-07-29 08:10:05 +00:00
|
|
|
python-json-logger = "2.0.2"
|
2022-02-14 20:33:27 +00:00
|
|
|
"ruamel.yaml" = "0.17.21"
|
2020-12-31 13:16:00 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2022-03-07 02:18:39 +00:00
|
|
|
bandit = "1.7.4"
|
2021-10-20 15:02:27 +00:00
|
|
|
flake8 = "4.0.1"
|
2022-03-21 02:28:12 +00:00
|
|
|
flake8-blind-except = "0.2.1"
|
2021-05-10 20:05:15 +00:00
|
|
|
flake8-builtins = "1.5.3"
|
2021-05-10 22:26:22 +00:00
|
|
|
flake8-docstrings = "1.6.0"
|
2021-10-20 06:25:43 +00:00
|
|
|
flake8-eradicate = "1.2.0"
|
2021-10-14 12:39:17 +00:00
|
|
|
flake8-isort = "4.1.1"
|
2021-05-10 20:05:15 +00:00
|
|
|
flake8-logging-format = "0.6.0"
|
|
|
|
flake8-pep3101 = "1.3.0"
|
|
|
|
flake8-polyfill = "1.0.2"
|
2021-10-20 06:25:43 +00:00
|
|
|
flake8-quotes = "3.3.1"
|
2021-08-08 04:12:26 +00:00
|
|
|
pep8-naming = "0.12.1"
|
2021-05-17 22:06:56 +00:00
|
|
|
pydocstyle = "6.1.1"
|
2022-03-21 02:28:12 +00:00
|
|
|
pytest = "7.1.1"
|
2021-10-04 17:25:09 +00:00
|
|
|
pytest-cov = "3.0.0"
|
2022-01-28 12:20:21 +00:00
|
|
|
pytest-mock = "3.7.0"
|
2021-12-26 08:00:49 +00:00
|
|
|
yapf = "0.32.0"
|
2022-02-05 14:01:30 +00:00
|
|
|
toml = "0.10.2"
|
2020-12-31 13:16:00 +00:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2021-01-01 12:50:41 +00:00
|
|
|
ansible-doctor = "ansibledoctor.cli:main"
|
2020-12-31 13:16:00 +00:00
|
|
|
|
|
|
|
[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-31 13:16:00 +00:00
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
2021-01-01 15:27:36 +00:00
|
|
|
addopts = "ansibledoctor --cov=ansibledoctor --cov-report=xml:coverage.xml --cov-report=term --cov-append --no-cov-on-fail"
|
2020-12-31 13:16:00 +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"]
|