mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-01 02:20:39 +00:00
164 lines
3.6 KiB
TOML
164 lines
3.6 KiB
TOML
[tool.poetry]
|
|
authors = ["Robert Kaussow <mail@thegeeklab.de>"]
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Environment :: Console",
|
|
"License :: OSI Approved :: Apache Software 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.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Topic :: System :: Systems Administration",
|
|
"Topic :: Utilities",
|
|
"Topic :: Software Development",
|
|
]
|
|
description = "Keep docker hosts tidy."
|
|
documentation = "https://docker-tidy.geekdocs.de/"
|
|
homepage = "https://docker-tidy.geekdocs.de/"
|
|
include = [
|
|
"LICENSE",
|
|
]
|
|
keywords = ["docker", "gc", "prune", "garbage"]
|
|
license = "Apache-2.0"
|
|
name = "docker-tidy"
|
|
packages = [
|
|
{include = "dockertidy"},
|
|
]
|
|
readme = "README.md"
|
|
repository = "https://github.com/thegeeklab/docker-tidy/"
|
|
version = "0.0.0"
|
|
|
|
[tool.poetry.dependencies]
|
|
anyconfig = "0.13.0"
|
|
appdirs = "1.4.4"
|
|
certifi = "2022.12.7"
|
|
colorama = "0.4.6"
|
|
dateparser = "1.1.7"
|
|
docker = "6.0.1"
|
|
docker-pycreds = "0.4.0"
|
|
environs = "9.5.0"
|
|
idna = "3.4"
|
|
ipaddress = "1.0.23"
|
|
jsonschema = "4.17.3"
|
|
nested-lookup = "0.2.25"
|
|
pathspec = "0.11.0"
|
|
python = "^3.7.0"
|
|
python-dateutil = "2.8.2"
|
|
python-json-logger = "2.0.7"
|
|
requests = "2.28.2"
|
|
"ruamel.yaml" = "0.17.21"
|
|
websocket_client = "1.5.1"
|
|
zipp = "3.15.0"
|
|
|
|
[tool.poetry.scripts]
|
|
docker-tidy = "dockertidy.cli:main"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
ruff = "0.0.254"
|
|
pytest = "7.2.2"
|
|
pytest-mock = "3.10.0"
|
|
pytest-cov = "4.0.0"
|
|
toml = "0.10.2"
|
|
yapf = "0.32.0"
|
|
|
|
[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"]
|
|
skip_glob = ["**/.env*", "**/env/*", "**/.venv/*", "**/docs/*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "dockertidy --cov=dockertidy --cov-report=xml:coverage.xml --cov-report=term --cov-append --no-cov-on-fail"
|
|
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"]
|
|
|
|
[tool.ruff]
|
|
exclude = [
|
|
".git",
|
|
"__pycache__",
|
|
"build",
|
|
"dist",
|
|
"test",
|
|
"*.pyc",
|
|
"*.egg-info",
|
|
".cache",
|
|
".eggs",
|
|
"env*",
|
|
]
|
|
# Explanation of errors
|
|
#
|
|
# 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 = [
|
|
"D102",
|
|
"D103",
|
|
"D105",
|
|
"D107",
|
|
"D202",
|
|
"D203",
|
|
"D212",
|
|
"UP038",
|
|
]
|
|
line-length = 99
|
|
select = [
|
|
"D",
|
|
"E",
|
|
"F",
|
|
"Q",
|
|
"W",
|
|
"I",
|
|
"S",
|
|
"BLE",
|
|
"N",
|
|
"UP",
|
|
"B",
|
|
"A",
|
|
"C4",
|
|
"T20",
|
|
"SIM",
|
|
"RET",
|
|
"ARG",
|
|
"ERA",
|
|
"RUF",
|
|
]
|
|
|
|
[tool.ruff.flake8-quotes]
|
|
inline-quotes = "double"
|
|
|
|
[tool.yapf]
|
|
based_on_style = "google"
|
|
column_limit = 99
|
|
dedent_closing_brackets = true
|
|
coalesce_brackets = true
|
|
split_before_logical_operator = true
|
|
indent_dictionary_value = true
|
|
allow_split_before_dict_value = false
|