We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10ea1fc commit 13c9e2cCopy full SHA for 13c9e2c
importlib_metadata/__init__.py
@@ -49,7 +49,12 @@ class PackageNotFoundError(ModuleNotFoundError):
49
50
51
class EntryPoint(collections.namedtuple('EntryPointBase', 'name value group')):
52
- """An entry point as defined by Python packaging conventions."""
+ """An entry point as defined by Python packaging conventions.
53
+
54
+ See `the packaging docs on entry points
55
+ <https://packaging.python.org/specifications/entry-points/>`_
56
+ for more information.
57
+ """
58
59
pattern = re.compile(
60
r'(?P<module>[\w.]+)\s*'
0 commit comments