more docs

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-20 13:30:43 -04:00
parent b9a03ecaf5
commit bcad23874f
+13
View File
@@ -363,6 +363,17 @@ will detect it.
Also note that `pip itself supports environment variables <https://pip.pypa.io/en/stable/user_guide/#environment-variables>`_, if you need additional customization.
☤ A Note about VCS Dependencies
-------------------------------
Pipenv will resolve the subdepencies of VCS dependencies, but only if they are editable, like so::
[packages]
requests = {git = "https://github.com/requests/requests.git", editable=true}
If editable is not true, subdependencies will not get resolved.
☤ Custom Virtual Environment Location
-------------------------------------
@@ -371,6 +382,8 @@ variable, if you have it set — so you can tell pipenv to store your virtual e
export WORKON_HOME=~/.venvs
In addition, you can also have Pipenv stick the virtualenv in ``project/.venv`` by setting the ``PIPENV_VENV_IN_PROJECT`` environment variable.
☤ Testing Projects
------------------