2020-11-15 19:51:26 +00:00
|
|
|
[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",
|
2021-10-07 07:52:57 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2022-11-24 20:35:40 +00:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2020-11-15 19:51:26 +00:00
|
|
|
"Topic :: System :: Systems Administration",
|
|
|
|
"Topic :: Utilities",
|
|
|
|
"Topic :: Software Development",
|
|
|
|
]
|
2020-12-31 12:53:48 +00:00
|
|
|
description = "Keep docker hosts tidy."
|
2020-11-15 19:51:26 +00:00
|
|
|
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]
|
2022-04-04 08:13:00 +00:00
|
|
|
anyconfig = "0.13.0"
|
2021-05-10 20:14:29 +00:00
|
|
|
appdirs = "1.4.4"
|
2022-12-09 21:14:08 +00:00
|
|
|
certifi = "2022.12.7"
|
2022-10-25 19:32:50 +00:00
|
|
|
colorama = "0.4.6"
|
2023-02-02 20:33:45 +00:00
|
|
|
dateparser = "1.1.7"
|
2022-11-05 13:09:44 +00:00
|
|
|
docker = "6.0.1"
|
2021-05-10 20:14:29 +00:00
|
|
|
docker-pycreds = "0.4.0"
|
2022-02-01 08:17:22 +00:00
|
|
|
environs = "9.5.0"
|
2022-09-19 07:07:12 +00:00
|
|
|
idna = "3.4"
|
2021-05-10 20:14:29 +00:00
|
|
|
ipaddress = "1.0.23"
|
2022-12-04 17:21:08 +00:00
|
|
|
jsonschema = "4.17.3"
|
2022-07-11 06:48:23 +00:00
|
|
|
nested-lookup = "0.2.25"
|
2023-02-02 11:21:23 +00:00
|
|
|
pathspec = "0.11.0"
|
2021-10-03 14:10:36 +00:00
|
|
|
python = "^3.7.0"
|
2021-07-15 07:02:45 +00:00
|
|
|
python-dateutil = "2.8.2"
|
2022-07-13 10:25:24 +00:00
|
|
|
python-json-logger = "2.0.4"
|
2023-01-16 08:33:43 +00:00
|
|
|
requests = "2.28.2"
|
2022-02-14 20:33:09 +00:00
|
|
|
"ruamel.yaml" = "0.17.21"
|
2023-02-08 11:11:52 +00:00
|
|
|
websocket_client = "1.5.1"
|
2023-02-09 18:50:25 +00:00
|
|
|
zipp = "3.13.0"
|
2020-11-15 19:51:26 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2022-03-07 01:08:39 +00:00
|
|
|
bandit = "1.7.4"
|
2022-08-22 06:40:14 +00:00
|
|
|
flake8 = "5.0.4"
|
2022-03-21 01:42:35 +00:00
|
|
|
flake8-blind-except = "0.2.1"
|
2022-12-26 00:27:23 +00:00
|
|
|
flake8-builtins = "2.1.0"
|
2021-05-10 22:23:18 +00:00
|
|
|
flake8-docstrings = "1.6.0"
|
2022-09-26 01:51:21 +00:00
|
|
|
flake8-eradicate = "1.4.0"
|
2023-01-03 13:52:39 +00:00
|
|
|
flake8-isort = "6.0.0"
|
2022-11-28 01:08:32 +00:00
|
|
|
flake8-logging-format = "0.9.0"
|
2022-10-09 11:40:09 +00:00
|
|
|
flake8-pep3101 = "2.0.0"
|
2021-05-10 20:14:29 +00:00
|
|
|
flake8-polyfill = "1.0.2"
|
2022-12-26 00:27:23 +00:00
|
|
|
flake8-quotes = "3.3.2"
|
|
|
|
pep8-naming = "0.13.3"
|
2023-01-23 02:38:33 +00:00
|
|
|
pydocstyle = "6.3.0"
|
|
|
|
pytest = "7.2.1"
|
2022-09-29 06:54:27 +00:00
|
|
|
pytest-cov = "4.0.0"
|
2022-10-10 00:27:43 +00:00
|
|
|
pytest-mock = "3.10.0"
|
2022-02-08 11:48:04 +00:00
|
|
|
tomli = "2.0.1"
|
2021-12-26 09:04:57 +00:00
|
|
|
yapf = "0.32.0"
|
2022-02-05 14:01:42 +00:00
|
|
|
toml = "0.10.2"
|
2020-11-15 19:51:26 +00:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2021-01-03 14:36:04 +00:00
|
|
|
docker-tidy = "dockertidy.cli:main"
|
2020-11-15 19:51:26 +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-11-15 19:51:26 +00:00
|
|
|
|
2020-11-15 21:34:34 +00:00
|
|
|
[tool.pytest.ini_options]
|
2021-01-03 14:36:04 +00:00
|
|
|
addopts = "dockertidy --cov=dockertidy --cov-report=xml:coverage.xml --cov-report=term --cov-append --no-cov-on-fail"
|
2020-11-15 19:51:26 +00:00
|
|
|
filterwarnings = [
|
|
|
|
"ignore::FutureWarning",
|
|
|
|
"ignore:.*collections.*:DeprecationWarning",
|
|
|
|
"ignore:.*pep8.*:FutureWarning",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
2020-11-15 20:52:35 +00:00
|
|
|
omit = ["**/test/*"]
|
2020-11-15 19:51:26 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
|