summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-08-02 19:26:49 +0100
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2022-08-03 20:49:50 +0100
commit4f4c6ac09b11039d4af85ce5c08d1f3e3c0f29b0 (patch)
treef4a1b1fa74d980d2f0bdcf36c899bb94723ba1fd /setuptools/command
parenteb363c321b1283802b75c641d1f6dcf9fd863032 (diff)
downloadpython-setuptools-git-4f4c6ac09b11039d4af85ce5c08d1f3e3c0f29b0.tar.gz
Improve editable_wheel command help
Diffstat (limited to 'setuptools/command')
-rw-r--r--setuptools/command/editable_wheel.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/command/editable_wheel.py b/setuptools/command/editable_wheel.py
index f6749ed1..a44d24be 100644
--- a/setuptools/command/editable_wheel.py
+++ b/setuptools/command/editable_wheel.py
@@ -58,9 +58,9 @@ _logger = logging.getLogger(__name__)
class _EditableMode(Enum):
"""
Possible editable installation modes:
- a) `lenient` (new files automatically added to the package - DEFAULT)
- b) `strict` (requires a new installation when files are added/removed)
- c) `compat` (attempts to emulate `python setup.py develop` - DEPRECATED)
+ `lenient` (new files automatically added to the package - DEFAULT);
+ `strict` (requires a new installation when files are added/removed); or
+ `compat` (attempts to emulate `python setup.py develop` - DEPRECATED).
"""
STRICT = "strict"