view lib/patchablegraph/tasks.py @ 519:a7a63816b120

don't exclude setup.py from the dist (though I mean to exclude it from the package, somehow) Ignore-this: bb2b8b480a9c8627105b36ac60ffa2c8
author drewp@bigasterisk.com
date Tue, 23 Apr 2019 00:52:47 -0700
parents 495f573af4f4
children 94610b5263e4
line wrap: on
line source

from invoke import task

import sys
sys.path.append('/my/proj/release')
from release import local_release

@task
def release(ctx):
    local_release(ctx)