From adf88ffcd5dd6393f9542870db2a7fa2dbbb6a0f Mon Sep 17 00:00:00 2001 From: Carlos O'Ryan Date: Thu, 5 Oct 2023 16:45:23 -0400 Subject: [PATCH] feat: support pipx (#545) --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index 219e79f8..0ac0c4ae 100644 --- a/setup.py +++ b/setup.py @@ -54,4 +54,10 @@ "waitress==2.1.2", "Werkzeug==3.0.0", ], + # Support installing via https://pypa.github.io/pipx/ + entry_points={ + "console_scripts": [ + "storage-testbench = testbench.rest_server:_main", + ] + }, )