From 7e065b56dcf252b4f096656db9572179675763ac Mon Sep 17 00:00:00 2001 From: Chris Copeland Date: Fri, 13 Dec 2024 18:57:30 -0800 Subject: [PATCH] rename python entrypoint files (installed executables have the same name) --- py/entry_points/{gimli_hash.py => hash.py} | 0 py/entry_points/{lith_keygen.py => keygen.py} | 0 py/entry_points/{lith_sign.py => sign.py} | 0 py/entry_points/{lith_verify.py => verify.py} | 0 setup.py | 8 ++++---- 5 files changed, 4 insertions(+), 4 deletions(-) rename py/entry_points/{gimli_hash.py => hash.py} (100%) rename py/entry_points/{lith_keygen.py => keygen.py} (100%) rename py/entry_points/{lith_sign.py => sign.py} (100%) rename py/entry_points/{lith_verify.py => verify.py} (100%) diff --git a/py/entry_points/gimli_hash.py b/py/entry_points/hash.py similarity index 100% rename from py/entry_points/gimli_hash.py rename to py/entry_points/hash.py diff --git a/py/entry_points/lith_keygen.py b/py/entry_points/keygen.py similarity index 100% rename from py/entry_points/lith_keygen.py rename to py/entry_points/keygen.py diff --git a/py/entry_points/lith_sign.py b/py/entry_points/sign.py similarity index 100% rename from py/entry_points/lith_sign.py rename to py/entry_points/sign.py diff --git a/py/entry_points/lith_verify.py b/py/entry_points/verify.py similarity index 100% rename from py/entry_points/lith_verify.py rename to py/entry_points/verify.py diff --git a/setup.py b/setup.py index 72e3b2e..ba9be5d 100644 --- a/setup.py +++ b/setup.py @@ -38,10 +38,10 @@ cffi_modules=["ffibuilder.py:ffibuilder"], entry_points={ "console_scripts": [ - "lith-keygen = lithium.entry_points.lith_keygen:main", - "lith-sign = lithium.entry_points.lith_sign:main", - "lith-verify = lithium.entry_points.lith_verify:main", - "gimli-hash = lithium.entry_points.gimli_hash:main", + "gimli-hash = lithium.entry_points.hash:main", + "lith-keygen = lithium.entry_points.keygen:main", + "lith-sign = lithium.entry_points.sign:main", + "lith-verify = lithium.entry_points.verify:main", ], }, )