forked from sig_core/toolkit
Neil Hanlon
4bf6fb6618
* use a flag to determine if we want an RC or not * Convert rldict and sigdict to an AttributeDict to allow access via __getattr__ * add fedora_release variable to configs for controlling icicle templates * build_image.py script to generate per-architecture XML files used by imagefactory * refactor time to call utcnow() once * add jinja types to development dependencies until we move past jinja 2.x * Generate TDL templates per architecture for each image variant on demand * Generate imagefactory and copy commands to execute image build * Refactor Kubernetes job template to be generic for all current jobs
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[tool.poetry]
|
|
name = "empanadas"
|
|
version = "0.1.0"
|
|
description = "hand crafted ISOs with love and spice"
|
|
authors = ["Louis Abel <louis@rockylinux.org>", "Neil Hanlon <neil@rockylinux.org>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.7,<4"
|
|
rpm-py-installer = "~1.1.0"
|
|
MarkupSafe = "<=2.0.1"
|
|
PyYAML = "~6.0"
|
|
Jinja2 = "~2"
|
|
productmd = "~1.33"
|
|
importlib-resources = "^5.8.0"
|
|
boto3 = "^1.24.12"
|
|
xmltodict = "^0.13.0"
|
|
requests = "^2.28.0"
|
|
kobo = "^0.24.1"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "~5"
|
|
types-Jinja2 = "^2.11.9" # Remove when upgrading past Jinja 2.x as type annotations are in-tree
|
|
|
|
[tool.poetry.scripts]
|
|
sync_from_peridot = "empanadas.scripts.sync_from_peridot:run"
|
|
sync_from_peridot_test = "empanadas.scripts.sync_from_peridot_test:run"
|
|
sync_sig = "empanadas.scripts.sync_sig:run"
|
|
build-iso = "empanadas.scripts.build_iso:run"
|
|
build-iso-extra = "empanadas.scripts.build_iso_extra:run"
|
|
pull-unpack-tree = "empanadas.scripts.pull_unpack_tree:run"
|
|
launch-builds = "empanadas.scripts.launch_builds:run"
|
|
build-image = "empanadas.scripts.build_image:run"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|