28

From: https://github.com/brandon-rhodes/luca/blob/master/requirements.txt

ansi2html
pytest
sphinx
tox
-e .

What does the last line, -e ., do?

1 Answers1

13

Looking at the doc the "-e" option indicates

-e, --editable <path/url>

Install a project in editable mode (i.e. >setuptools “develop mode”) from a >local project path or a VCS url.

So the dot indicates the path, i.e the actual directory (see this for more information).

kelaraj
  • 531
  • 4
  • 9
Norman
  • 435
  • 6
  • 10