From 68e5752503471a2ae8eea898cdb273d6bbf5d2ec Mon Sep 17 00:00:00 2001 From: KOLANICH Date: Sun, 12 Feb 2023 22:30:11 +0300 Subject: [PATCH] Fix the URLs in package metadata --- setup.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index b79a0d12..8c871af6 100644 --- a/setup.py +++ b/setup.py @@ -133,8 +133,8 @@ setup(name = 'GPy', long_description = desc, license = "BSD 3-clause", keywords = "machine-learning gaussian-processes kernels", - url = "http://sheffieldml.github.com/GPy/", - download_url='https://github.com/SheffieldML/GPy/', + url = "https://sheffieldml.github.io/GPy/", + download_url='https://github.com/SheffieldML/GPy/archive/refs/heads/devel.zip', ext_modules = ext_mods, packages = ["GPy", "GPy.core", @@ -201,7 +201,10 @@ setup(name = 'GPy', 'Topic :: Software Development', 'Topic :: Software Development :: Libraries :: Python Modules', - ] + ], + project_urls = {"Source Code": "https://github.com/SheffieldML/GPy", + "Bug Tracker": "https://github.com/SheffieldML/GPy/issues", + } )