task-keeper 0.30.1

Task keeper to manage tasks from different task runners
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!")