From 08a10bbe47d3f9c5f6e472fffb9de9876d2d8505 Mon Sep 17 00:00:00 2001 From: Carlos O'Ryan Date: Wed, 4 Oct 2023 14:13:37 +0000 Subject: [PATCH] feat: support pipx --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index 4f7cb3bc..1ee4e045 100644 --- a/setup.py +++ b/setup.py @@ -53,4 +53,10 @@ "gunicorn==21.2.0", "waitress==2.1.2", ], + # Support installing via https://pypa.github.io/pipx/ + entry_points={ + "console_scripts": [ + "storage-testbench = testbench.rest_server:_main", + ] + }, )