From 2415c09459efb0c6ab33d9dfe2a555237577dc6e Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 15 Jul 2021 15:01:29 -0400 Subject: [PATCH] feat(package): support pipx run (#3117) --- tools/setup_main.py.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/setup_main.py.in b/tools/setup_main.py.in index bcd4ef4ae..533a75ae7 100644 --- a/tools/setup_main.py.in +++ b/tools/setup_main.py.in @@ -32,6 +32,9 @@ setup( entry_points={ "console_scripts": [ "pybind11-config = pybind11.__main__:main", + ], + "pipx.run": [ + "pybind11 = pybind11.__main__:main", ] }, cmdclass=cmdclass