1 2 3 4 5 6 7 8 9 10 11 12 13 14
from invoke import task @task def build(c): """ build project """ print("Building!") @task def deploy(c): print("Deploying!")