6b75c12831
The scripts were written in bash. Using bash became quite unwieldy.
Python by nature can deal well with yaml and is thus better suited
in dealing with the yaml-based configuration files. This change
rewrites the original scripts staying as close as possible to the
original ones.
Right now, the python scripts call subprocesses a lot to work with
the tools, which were already used before. At least for yaml-
templating there may be better tools that have a python integration,
which could be used in the future.
Change-Id: Ida16318445a05dcfdada9c7a56a391e4827f02e7
18 lines
261 B
TOML
18 lines
261 B
TOML
[[source]]
|
|
name = "pypi"
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
|
|
[dev-packages]
|
|
typed-ast = "~=1.4.1"
|
|
black = "==19.10b0"
|
|
pylint = "==2.4.4"
|
|
|
|
[packages]
|
|
pyyaml = "~=5.3"
|
|
passlib = "~=1.7.2"
|
|
python-gnupg = "~=0.4.5"
|
|
|
|
[requires]
|
|
python_version = "3.8"
|