From 97a05e5a00f4fc3911e831a28ca1a0d5a6e3ca7e Mon Sep 17 00:00:00 2001 From: joaopfonseca Date: Wed, 13 Nov 2024 20:35:39 -0500 Subject: [PATCH] BUILD update library name --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index b34fe70..58c6455 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def get_long_description() -> str: return (CURRENT_DIR / "README.md").read_text(encoding="utf8") -import sharp._min_dependencies as min_deps +import sharp._min_dependencies as min_deps # noqa ver_file = os.path.join("sharp", "_version.py") with open(ver_file) as f: @@ -30,10 +30,10 @@ def get_long_description() -> str: MAINTAINER = "J. Fonseca" MAINTAINER_EMAIL = "jpfonseca@novaims.unl.pt" -URL = "https://github.com/joaopfonseca/sharp" -VERSION = __version__ +URL = "https://github.com/DataResponsibly/sharp" +VERSION = __version__ # noqa SHORT_DESCRIPTION = ( - "Implementation of Machine Learning algorithms, experiments and utilities." + "Implementation of the ShaRP framework." ) LICENSE = "MIT" CLASSIFIERS = [ @@ -58,7 +58,7 @@ def get_long_description() -> str: } setup( - name="sharp", + name="xai-sharp", maintainer=MAINTAINER, maintainer_email=MAINTAINER_EMAIL, url=URL,