From 0777e9667243c398b2d6a8ba9128af8f5e580187 Mon Sep 17 00:00:00 2001 From: SandroMartens Date: Fri, 23 Feb 2024 11:33:25 +0100 Subject: [PATCH] update setup.py --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f6f3476..aad2f29 100644 --- a/setup.py +++ b/setup.py @@ -6,12 +6,12 @@ setup( name="DBGSOM", version="1.1.0", - description="A directed batch growing approach to enhance the topology preservation of self-organizing maps ", + description="A Python implementation of the Directed Batch Growing Self-Organizing Map.", long_description=long_description, author="Sandro Martens", author_email="sandro.martens@web.de", license="MIT", - packages=["DBGSOM"], + packages=["dbgsom"], install_requires=[ "numpy", "networkx", @@ -21,4 +21,5 @@ "scikit-learn", "numpydoc", ], + url="https://github.com/SandroMartens/DBGSOM" )