From f55782d0daccffd135bd70350b5c28d92fc2906a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sp=C3=B6ttel?= <1682504+fspoettel@users.noreply.github.com> Date: Thu, 30 Jun 2022 14:16:48 +0200 Subject: [PATCH] fix: update setup.py entry_points to use __main__ --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4e23ac8..603cc09 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( description="", author="Bellingcat", packages=["geocluster"], - entry_points={"console_scripts": ["geocluster = geocluster.cli:main"]}, + entry_points={"console_scripts": ["geocluster = geocluster.__main__:main"]}, install_requires=[ "click", "geojson",