Metadata-Version: 2.1
Name: venvstarter
Version: 0.9.1
Summary: Tool to create virtualenvs, manage versions of packages in it and use it start a particular program
Home-page: https://github.com/delfick/venvstarter
Author: Stephen Moore
Author-email: github@delfick.com
License: MIT
Description: Venvstarter
        ===========
        
        Program to bootstrap a virtualenv for your program!
        
        Full documentation at http://venvstarter.readthedocs.io
        
        Tests
        -----
        
        To run the tests you must first create a ``pythons.json`` in the root of your
        checkout of venvstarter that tells the tests where to find each version of
        Python:
        
        .. code-block:: python
        
          {
            "python3.6": "~/.pyenv/versions/3.6.13/bin/python",
            "python3.7": "~/.pyenv/versions/3.7.10/bin/python",
            "python3.8": "~/.pyenv/versions/3.8.10/bin/python",
            "python3.9": "~/.pyenv/versions/3.9.5/bin/python"
          }
        
        In this example I'm using pyenv to get copies of each Python. Using pyenv isn't
        a requirement, but it does make it easy! There is nothing in the tests that rely
        on features in any particular version, and so the minor patch of each version is
        irrelevant. All that matters is having some version of 3.6, 3.7, 3.8 and 3.9.
        
        I recommend running the tests in a virtualenv. I use virtualenvwrapper for this
        but you can also do a ``python3 -m venv my_venv`` somewhere and use that.
        
        Then once you're in a virtualenv::
        
          > python -m pip install -e ".[tests]"
          > ./test.sh
        
Platform: UNKNOWN
Requires-Python: >= 3.6
Provides-Extra: tests
