You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
2.8 KiB
108 lines
2.8 KiB
[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", |
|
"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.6.15" |
|
colorama = "0.4.5" |
|
dateparser = "1.1.1" |
|
docker = "5.0.3" |
|
docker-pycreds = "0.4.0" |
|
environs = "9.5.0" |
|
idna = "3.3" |
|
ipaddress = "1.0.23" |
|
jsonschema = "4.6.0" |
|
nested-lookup = "0.2.23" |
|
pathspec = "0.9.0" |
|
python = "^3.7.0" |
|
python-dateutil = "2.8.2" |
|
python-json-logger = "2.0.2" |
|
requests = "2.28.0" |
|
"ruamel.yaml" = "0.17.21" |
|
websocket_client = "1.3.3" |
|
zipp = "3.8.0" |
|
|
|
[tool.poetry.dev-dependencies] |
|
bandit = "1.7.4" |
|
flake8 = "4.0.1" |
|
flake8-blind-except = "0.2.1" |
|
flake8-builtins = "1.5.3" |
|
flake8-docstrings = "1.6.0" |
|
flake8-eradicate = "1.2.1" |
|
flake8-isort = "4.1.1" |
|
flake8-logging-format = "0.6.0" |
|
flake8-pep3101 = "1.3.0" |
|
flake8-polyfill = "1.0.2" |
|
flake8-quotes = "3.3.1" |
|
pep8-naming = "0.13.0" |
|
pydocstyle = "6.1.1" |
|
pytest = "7.1.2" |
|
pytest-cov = "3.0.0" |
|
pytest-mock = "3.7.0" |
|
tomli = "2.0.1" |
|
yapf = "0.32.0" |
|
toml = "0.10.2" |
|
|
|
[tool.poetry.scripts] |
|
docker-tidy = "dockertidy.cli: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"] |
|
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"]
|
|
|