From e956b2ba226637c79e79d11f21e7394e0da224b2 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 c8508b603..c639a7ab8 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", ], },