mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
320f2169ae
Signed-off-by: Dan Ryan <dan@danryan.co>
10 lines
315 B
Python
10 lines
315 B
Python
# -*- coding=utf-8 -*-
|
|
# Copyied from pip's vendoring process
|
|
# see https://github.com/pypa/pip/blob/95bcf8c5f6394298035a7332c441868f3b0169f4/tasks/__init__.py
|
|
import invoke
|
|
|
|
from . import vendoring, release
|
|
from .vendoring import vendor_passa
|
|
|
|
ns = invoke.Collection(vendoring, release, vendor_passa.vendor_passa)
|