No project description provided
Project description
kraken-common
The kraken-common
package is the shared utility namespace for the Kraken build system and
the Kraken wrapper CLI. It contains various generic utilities, as well as the tools for loading
the metadata of a Kraken project.
Aside from general utilities that are used by one, the other or both, this package also implements the shared logic for executing Kraken Python and BuildDSL build scripts and retrieving its metadata.
Script runners
The following types of Kraken script runners are currently available via the kraken.common
package:
PythonScriptRunner
: Matches akraken.py
or.kraken.py
file and runs it as a pure Python script.BuildDslScriptRunner
: Matches akraken.build
or.kraken.build
file and runs it as abuilddsl
script, with thebuildscript()
function being available by default.
Buildscript metadata
A Kraken project contains at least one .kraken.py
file (build script) and maybe a .kraken.lock
file (lock file). The build script at the root of a project may contain hints for the Kraken wrapper
CLI to be able to correctly bootstrap an environment that contains the Kraken build system.
Python | BuildDSL |
---|---|
from kraken.common import buildscript
buildscript(
requirements=["kraken-std ^0.4.16"],
)
|
buildscript {
requires "kraken-std ^0.4.16"
}
|
The way that this works is that the buildscript()
function raises an exception that aborts the execution
of the build script before the rest of the script is executed, and the exception contains the metadata.
When the build script is executed by the Kraken build system instead, the function does nothing.
The API to capture the data passed to a call to the buildscript()
function is as follows:
from kraken.common import BuildscriptMetadata
with BuildscriptMetadata.capture() as metadata_future:
...
metadata = metadata_future.result()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file kraken_common-0.30.1.tar.gz
.
File metadata
- Download URL: kraken_common-0.30.1.tar.gz
- Upload date:
- Size: 23.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/37.3 requests/2.28.2 requests-toolbelt/0.10.1 urllib3/1.26.15 tqdm/4.65.0 importlib-metadata/6.1.0 keyring/23.13.1 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 667361b44d52aa11d0ea6c9edcc70614b2052221e93cecf276dea8c2538dad03 |
|
MD5 | 34df469c7b2676946765e8522da5bc6a |
|
BLAKE2b-256 | 424e8b801098d84a81a055324a8df81bcdabfd69fd8b454a5efb606e01239216 |
File details
Details for the file kraken_common-0.30.1-py3-none-any.whl
.
File metadata
- Download URL: kraken_common-0.30.1-py3-none-any.whl
- Upload date:
- Size: 30.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/37.3 requests/2.28.2 requests-toolbelt/0.10.1 urllib3/1.26.15 tqdm/4.65.0 importlib-metadata/6.1.0 keyring/23.13.1 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bfaa3f658b97c82c18e55e899f47075be0fc4a3440352218e35dfa0bb185187 |
|
MD5 | 13702815110b50c75e9ab05babf2ae90 |
|
BLAKE2b-256 | fd754c53732fd2e30631c8fe919e9aba0738a703f2f82c1302febe2295e83f59 |