Skip to content

Commit

Permalink
BUILD update library name
Browse files Browse the repository at this point in the history
  • Loading branch information
joaopfonseca committed Nov 14, 2024
1 parent 4b4217d commit 97a05e5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ 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:
exec(f.read())

MAINTAINER = "J. Fonseca"
MAINTAINER_EMAIL = "[email protected]"
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 = [
Expand All @@ -58,7 +58,7 @@ def get_long_description() -> str:
}

setup(
name="sharp",
name="xai-sharp",
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
url=URL,
Expand Down

0 comments on commit 97a05e5

Please sign in to comment.