From fa8bbc43a77399a377407f17bba6829239389198 Mon Sep 17 00:00:00 2001 From: Ze'ev Schurmann Date: Fri, 28 Feb 2025 00:08:15 +0200 Subject: [PATCH] Fixed setup.py --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 04ee35e..651703a 100644 --- a/setup.py +++ b/setup.py @@ -7,11 +7,11 @@ setup( description="A tool to calculate ink coverage in images.", long_description=open("README.md").read(), long_description_content_type="text/markdown", - url="https://git.zaks.web.za/thisiszeev/ink-calc", # Replace with your repo URL + url="https://git.zaks.web.za/thisiszeev/ink-calc", license="GPL-3.0-or-later", packages=find_packages(where="src"), package_dir={"": "src"}, - py_modules=["ink_calc"], # Ensure the main script is discoverable + py_modules=["ink_calc"], install_requires=[ "numpy", "Pillow", @@ -20,7 +20,7 @@ setup( python_requires=">=3.11", entry_points={ "console_scripts": [ - "ink-calc=ink_calc:main", # Ensure `ink-calc.py` has a `main()` function + "ink-calc=ink_calc:main", ], }, classifiers=[