Max Gautier
1 month ago
Failed to extract signature
1 changed files with
33 additions and
0 deletions
-
scripts/component_hash_update/pyproject.toml
|
|
@ -0,0 +1,33 @@ |
|
|
|
[build-system] |
|
|
|
requires = ["setuptools >= 61.0"] |
|
|
|
build-backend = "setuptools.build_meta" |
|
|
|
|
|
|
|
[project] |
|
|
|
name = "kubespray_component_hash_update" |
|
|
|
version = "1.0.0" |
|
|
|
dependencies = [ |
|
|
|
"more_itertools", |
|
|
|
"ruamel.yaml", |
|
|
|
"requests", |
|
|
|
"packaging", |
|
|
|
] |
|
|
|
|
|
|
|
requires-python = ">= 3.10" |
|
|
|
|
|
|
|
authors = [ |
|
|
|
{ name = "Craig Rodrigues", email = "rodrigc@crodrigues.org" }, |
|
|
|
{ name = "Simon Wessel" }, |
|
|
|
{ name = "Max Gautier", email = "mg@max.gautier.name" }, |
|
|
|
] |
|
|
|
maintainers = [ |
|
|
|
{ name = "The Kubespray maintainers" }, |
|
|
|
] |
|
|
|
|
|
|
|
description = "Download or compute hashes for new versions of components deployed by Kubespray" |
|
|
|
|
|
|
|
classifiers = [ |
|
|
|
"License :: OSI Approved :: Apache-2.0", |
|
|
|
] |
|
|
|
|
|
|
|
[project.scripts] |
|
|
|
update-hashes = "component_hash_update.download:main" |