mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-10-31 18:10:39 +00:00
112 lines
2.9 KiB
TOML
112 lines
2.9 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.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"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.9.11"
|
|
appdirs = "^1.4.4"
|
|
certifi = "^2020.11.8"
|
|
colorama = "^0.4.4"
|
|
dateparser = "^1.0.0"
|
|
docker = "^4.3.1"
|
|
docker-pycreds = "^0.4.0"
|
|
environs = "^9.2.0"
|
|
idna = "^2.10"
|
|
ipaddress = "^1.0.23"
|
|
jsonschema = "^3.2.0"
|
|
nested-lookup = "^0.2.21"
|
|
pathspec = "^0.8.1"
|
|
python = "^3.6.0"
|
|
python-dateutil = "^2.8.1"
|
|
python-json-logger = "^2.0.1"
|
|
"ruamel.yaml" = "^0.16.12"
|
|
websocket_client = "^0.57.0"
|
|
zipp = "^3.4.0"
|
|
requests = "^2.25.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
autopep8 = "^1.5.4"
|
|
bandit = "^1.6.2"
|
|
coverage = {extras = ["toml"], version = "^5.3"}
|
|
flake8 = "^3.8.4"
|
|
flake8-blind-except = "^0.1.1"
|
|
flake8-builtins = "^1.5.3"
|
|
flake8-colors = "^0.1.8"
|
|
flake8-docstrings = "^1.5.0"
|
|
flake8-eradicate = "^1.0.0"
|
|
flake8-isort = "^4.0.0"
|
|
flake8-logging-format = "^0.6.0"
|
|
flake8-pep3101 = "^1.3.0"
|
|
flake8-polyfill = "^1.0.2"
|
|
flake8-quotes = "^3.2.0"
|
|
pathlib2 = "^2.3.5"
|
|
pep8-naming = "^0.11.1"
|
|
pipenv-setup = "^3.1.1"
|
|
pydocstyle = "^5.1.1"
|
|
pytest = "^6.1.2"
|
|
pytest-cov = "^2.10.1"
|
|
pytest-mock = "^3.3.1"
|
|
yapf = "^0.30.0"
|
|
|
|
[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/*", "**/docs/*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "--cov=dockertidy --cov-report xml:coverage.xml --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"]
|