From 7c900045e1644076aaaf722bc8a573dfa92493c5 Mon Sep 17 00:00:00 2001 From: lychee Date: Sun, 11 Feb 2024 12:16:01 -0600 Subject: [PATCH] Add entrypoint to setup --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 22d4bb9f..11880552 100755 --- a/setup.py +++ b/setup.py @@ -121,6 +121,11 @@ python_requires='>=3.10.0', extras_require=EXTRA_REQUIRES, + entry_points={ + 'console_scripts': [ + 'jishaku = jishaku.__main__:entrypoint', + ], + }, download_url=f'https://github.com/Gorialis/jishaku/archive/{version}.tar.gz',