From 491938c2ae78abffaba4d47c01f526b2b01a8133 Mon Sep 17 00:00:00 2001 From: Sasha Gerrand Date: Thu, 13 Jun 2024 16:01:21 +0100 Subject: [PATCH] Add additional `codecov` entrypoint Given that the https://github.com/codecov/codecov-python repository was archived last year and the associated Python package is deprecated, adding `codecov` as en entrypoint would make this Python package's script names more aligned to the other, operating system specific, binary executables which are created from the same code. That would also make life easier for any maintainers who may want to package this project as part of a software distribution like Homebrew. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f0dc51d1..cb3a69ee 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ ], entry_points={ "console_scripts": [ + "codecov = codecov_cli.main:run", "codecovcli = codecov_cli.main:run", ], },