feat(orchestration): add steptimer to juice install
Added timer for juice install command to count the time elapsed since the last notification message.
To use it in another command do the following:
from orangeqs.juice.cli.steptimer import StepTimer
# Live step timer that echoes progress like ``juice.echo("...")``.
juice = StepTimer()
atexit.register(juice.finalize)Then use juice.echo(...) to display message with timer.
Edited by Kristian Gogora
