2021-01-03 13:49:48 +00:00
|
|
|
[tool.poetry]
|
|
|
|
authors = ["Robert Kaussow <mail@thegeeklab.de>"]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
|
|
|
"License :: OSI Approved :: MIT 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.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
2021-10-07 07:52:52 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2022-11-24 20:35:35 +00:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2023-10-16 12:15:31 +00:00
|
|
|
"Programming Language :: Python :: 3.12",
|
2021-01-03 13:49:48 +00:00
|
|
|
"Topic :: Utilities",
|
|
|
|
"Topic :: Software Development",
|
|
|
|
]
|
|
|
|
description = "Creates a list of docker tags from a given version string."
|
|
|
|
documentation = "https://github.com/thegeeklab/docker-autotag/"
|
|
|
|
homepage = "https://github.com/thegeeklab/docker-autotag/"
|
2024-02-06 08:34:25 +00:00
|
|
|
include = ["LICENSE"]
|
2021-01-03 13:49:48 +00:00
|
|
|
keywords = ["docker", "versioning", "automation", "ci"]
|
|
|
|
license = "MIT"
|
2021-01-03 13:57:31 +00:00
|
|
|
name = "docker-autotag"
|
2024-02-06 08:34:25 +00:00
|
|
|
packages = [{ include = "dockerautotag" }]
|
2021-01-03 13:49:48 +00:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/thegeeklab/docker-autotag/"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-10-25 19:28:10 +00:00
|
|
|
colorama = "0.4.6"
|
2023-11-04 21:06:30 +00:00
|
|
|
python = "^3.8.0"
|
2023-03-20 09:34:54 +00:00
|
|
|
python-json-logger = "2.0.7"
|
2022-06-02 19:24:18 +00:00
|
|
|
semantic-version = "2.10.0"
|
2021-01-03 13:49:48 +00:00
|
|
|
|
2023-02-12 12:40:45 +00:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
docker-autotag = "dockerautotag.cli:main"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-07-01 00:16:58 +00:00
|
|
|
ruff = "0.5.0"
|
2024-06-10 01:36:13 +00:00
|
|
|
pytest = "8.2.2"
|
2024-04-08 02:34:52 +00:00
|
|
|
pytest-mock = "3.14.0"
|
2024-04-02 07:05:42 +00:00
|
|
|
pytest-cov = "5.0.0"
|
2022-02-05 14:01:39 +00:00
|
|
|
toml = "0.10.2"
|
2021-01-03 13:49:48 +00:00
|
|
|
|
|
|
|
[tool.poetry-dynamic-versioning]
|
|
|
|
enable = true
|
|
|
|
style = "semver"
|
|
|
|
vcs = "git"
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
2023-04-17 14:22:15 +00:00
|
|
|
addopts = "dockerautotag --cov=dockerautotag --cov-report=xml:coverage.xml --cov-report=term --no-cov-on-fail"
|
2021-01-03 13:49:48 +00:00
|
|
|
filterwarnings = [
|
|
|
|
"ignore::FutureWarning",
|
2023-04-17 14:22:15 +00:00
|
|
|
"ignore::DeprecationWarning",
|
2021-01-03 13:49:48 +00:00
|
|
|
"ignore:.*pep8.*:FutureWarning",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
omit = ["**/test/*"]
|
|
|
|
|
|
|
|
[build-system]
|
2023-08-24 22:28:39 +00:00
|
|
|
build-backend = "poetry_dynamic_versioning.backend"
|
2021-01-03 13:49:48 +00:00
|
|
|
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
|
2023-02-12 12:40:45 +00:00
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
exclude = [
|
2024-02-06 08:34:25 +00:00
|
|
|
".git",
|
|
|
|
"__pycache__",
|
|
|
|
"build",
|
|
|
|
"dist",
|
|
|
|
"test",
|
|
|
|
"*.pyc",
|
|
|
|
"*.egg-info",
|
|
|
|
".cache",
|
|
|
|
".eggs",
|
|
|
|
"env*",
|
2023-02-12 12:40:45 +00:00
|
|
|
]
|
2023-11-10 08:27:37 +00:00
|
|
|
|
|
|
|
line-length = 99
|
|
|
|
indent-width = 4
|
|
|
|
|
2024-02-06 08:34:25 +00:00
|
|
|
[tool.ruff.lint]
|
2023-02-12 12:40:45 +00:00
|
|
|
# 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 = [
|
2024-02-06 08:34:25 +00:00
|
|
|
"D102",
|
|
|
|
"D103",
|
|
|
|
"D105",
|
|
|
|
"D107",
|
|
|
|
"D202",
|
|
|
|
"D203",
|
|
|
|
"D212",
|
|
|
|
"UP038",
|
|
|
|
"RUF012",
|
2023-02-12 12:40:45 +00:00
|
|
|
]
|
|
|
|
select = [
|
2024-02-06 08:34:25 +00:00
|
|
|
"D",
|
|
|
|
"E",
|
|
|
|
"F",
|
|
|
|
"Q",
|
|
|
|
"W",
|
|
|
|
"I",
|
|
|
|
"S",
|
|
|
|
"BLE",
|
|
|
|
"N",
|
|
|
|
"UP",
|
|
|
|
"B",
|
|
|
|
"A",
|
|
|
|
"C4",
|
|
|
|
"T20",
|
|
|
|
"SIM",
|
|
|
|
"RET",
|
|
|
|
"ARG",
|
|
|
|
"ERA",
|
|
|
|
"RUF",
|
2023-02-12 12:40:45 +00:00
|
|
|
]
|
|
|
|
|
2023-11-10 08:27:37 +00:00
|
|
|
[tool.ruff.format]
|
|
|
|
quote-style = "double"
|
|
|
|
indent-style = "space"
|
|
|
|
line-ending = "lf"
|