From f658511e4a17e0eb860ba221691afc72dca27b65 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Wed, 2 Feb 2022 21:25:05 +0000 Subject: [PATCH] Point to importlib.metadata in README --- README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.rst b/README.rst index 00bd02c..7e72087 100644 --- a/README.rst +++ b/README.rst @@ -1,3 +1,7 @@ +**This package is in maintenance-only mode.** New code should use the +`importlib.metadata module `_ +in the Python standard library to find and load entry points. + Entry points are a way for Python packages to advertise objects with some common interface. The most common examples are ``console_scripts`` entry points, which define shell commands by identifying a Python function to run.