From d6efd2efb9d1949f2cc5efcd753d8d1c8fd4072f Mon Sep 17 00:00:00 2001 From: James Thewlis Date: Sun, 4 Aug 2024 18:49:59 +0100 Subject: [PATCH] Fix __main__ typo in pyproject.toml (#226) Fixes the `__naim__` typo in the script definition that should be `__main__` --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f801407e..6ee78d36 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ dependencies = [ "watchdog>=2.3.1", ] urls.Source = "https://github.com/python-cachier/cachier" -scripts.cachier = "cachier.__naim__:cli" +scripts.cachier = "cachier.__main__:cli" [tool.setuptools] include-package-data = true