Update documentation regarding entry points

Refer to the PyPA packaging guide
Replace references to the deprecated `pkg_resources` docs
This commit is contained in:
Viicos 2024-03-14 21:06:23 +01:00
parent 5c52d752e6
commit 49f52a8598
3 changed files with 18 additions and 16 deletions

View file

@ -296,7 +296,11 @@ texinfo_documents = [
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {"python": ("https://docs.python.org/3/", None)}
intersphinx_mapping = {
"python": ("https://docs.python.org/3/", None),
"packaging": ("https://packaging.python.org/en/latest/", None),
"setuptools": ("https://setuptools.pypa.io/en/latest/", None),
}
extlinks = {
"issue": ("https://github.com/pycqa/flake8/issues/%s", "#%s"),