diff --git a/.gitignore b/.gitignore index 87a15c2e..59d2c107 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ /.venv +*.pyc +.cache +pipenv.egg-info/ diff --git a/pipenv/core.py b/pipenv/core.py index 6c3f4a0f..162568d7 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -394,8 +394,8 @@ def init(dev=False): @click.command() @click.option('--virtualenv', '--venv', '-v', is_flag=True, default=False) @click.option('--bare', '-b', is_flag=True, default=False) -def where(virtualenv=False, bare=False): - do_where(virtualenv, bare) +def where(venv=False, bare=False): + do_where(venv, bare) @click.command() @@ -469,4 +469,4 @@ cli.add_command(check) if __name__ == '__main__': - cli() \ No newline at end of file + cli() diff --git a/pipenv/delegator.py b/pipenv/delegator.py index 59222391..86cea783 100644 --- a/pipenv/delegator.py +++ b/pipenv/delegator.py @@ -224,4 +224,4 @@ def run(command, block=True): if block: c.block() - return c \ No newline at end of file + return c diff --git a/setup.py b/setup.py index 0e93d077..aa212b6b 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,9 @@ required = [ 'toml', 'click', 'pip', - 'virtualenv' + 'virtualenv', + 'pexpect', + 'daemon', ] setup(