view lib/patchablegraph/tasks.py @ 1322:5559febcd368

don't exclude setup.py from the dist (though I mean to exclude it from the package, somehow) Ignore-this: bb2b8b480a9c8627105b36ac60ffa2c8 darcs-hash:eb8f463874827453b2e0a0be55c675502f9daded
author drewp <drewp@bigasterisk.com>
date Tue, 23 Apr 2019 00:52:47 -0700
parents 43791ec0beb2
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)