summaryrefslogtreecommitdiff
path: root/setuptools/command/dist_info.py
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2023-02-13 18:07:31 +0000
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2023-02-13 18:10:53 +0000
commita85b393d42b4ba946a201d4978759de4b65cbdad (patch)
tree80f008190c3a0562d33df422e9de12f416fdae72 /setuptools/command/dist_info.py
parent23abfb848a1f618b190a94cb8304f0e72bc84499 (diff)
downloadpython-setuptools-git-a85b393d42b4ba946a201d4978759de4b65cbdad.tar.gz
Clarify 'editable_wheel' and 'dist_info' are internal commands only
Diffstat (limited to 'setuptools/command/dist_info.py')
-rw-r--r--setuptools/command/dist_info.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/setuptools/command/dist_info.py b/setuptools/command/dist_info.py
index 0685c945..4966d852 100644
--- a/setuptools/command/dist_info.py
+++ b/setuptools/command/dist_info.py
@@ -19,8 +19,12 @@ from setuptools._deprecation_warning import SetuptoolsDeprecationWarning
class dist_info(Command):
+ """
+ This command is private and reserved for internal use of setuptools,
+ clients should use the ``setuptools.build_meta`` APIs.
+ """
- description = 'create a .dist-info directory'
+ description = "DO NOT CALL DIRECTLY, INTERNAL ONLY: create .dist-info directory"
user_options = [
('egg-base=', 'e', "directory containing .egg-info directories"