From a044fcdc2cd65568c1e36a63c67b428fbb2cc359 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Wed, 28 Sep 2022 18:00:51 +0200 Subject: [PATCH] fix command in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d8a0317..b7176cc 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: with open("requirements.txt") as f: requirements = f.read().splitlines() -entry_points = {"console_scripts": ["cashu = cahu.wallet.cashu:cli"]} +entry_points = {"console_scripts": ["cashu = cahu.wallet.cli:cli"]} setuptools.setup( name="cashu",