From b395e657fb91ace65ff8fbbe72813cb88c0655a5 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Tue, 7 Feb 2023 13:51:40 -0500 Subject: [PATCH] Rename Python script --- python/bin/{soe => soe-python} | 0 python/default.nix | 2 -- python/setup.py | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) rename python/bin/{soe => soe-python} (100%) diff --git a/python/bin/soe b/python/bin/soe-python similarity index 100% rename from python/bin/soe rename to python/bin/soe-python diff --git a/python/default.nix b/python/default.nix index daa861d..76a15d5 100644 --- a/python/default.nix +++ b/python/default.nix @@ -6,6 +6,4 @@ python3.pkgs.buildPythonApplication { src = ./.; doCheck = false; - - meta.mainProgram = "soe"; } diff --git a/python/setup.py b/python/setup.py index 158092b..0e31be3 100644 --- a/python/setup.py +++ b/python/setup.py @@ -3,5 +3,5 @@ from setuptools import setup setup( name="soe", version="1.0.0", - scripts=["bin/soe"] + scripts=["bin/soe-python"] )