Metadata-Version: 2.1
Name: dephell-shells
Version: 0.1.0
Summary: activate virtual environment for current shell
Home-page: UNKNOWN
Author: orsinium
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.5
Requires-Dist: attrs
Requires-Dist: pexpect
Requires-Dist: shellingham


Dephell Shells
==============

Run shell for virtual environment.

Installation
------------

.. code-block:: bash

   python3 -m pip install --user dephell_shells

Usage
-----

.. code-block:: python

   from pathlib import Path
   from dephell_shells import Shells

   shells = Shells(bin_path=Path('/home/gram/.../dephell-nLn6/bin'))
   shells.current
   # ZshShell(bin_path=Path('/home/gram/.../dephell-nLn6'), shell_path=Path('/usr/bin/zsh'))
   shells.current.run()


