From 2f439fef2101753b0eb67401a76e47aa9695149c Mon Sep 17 00:00:00 2001 From: Bob Hyman Date: Sun, 9 Aug 2020 23:05:21 -0400 Subject: [PATCH] install via pip install for best perf. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 54fbb1342..f732f6dcb 100755 --- a/setup.py +++ b/setup.py @@ -370,7 +370,8 @@ def main(): scripts=scripts, ) # We used to avoid setuptools 'console_scripts' due to startup performance - # concerns which have since been resolved. So now we use them. + # concerns which have since been resolved, so long as install is done + # via `pip install .` and not `python setup.py install`. skw["entry_points"] = { "pygments.lexers": [ "xonsh = xonsh.pyghooks:XonshLexer",