Fix the URLs in package metadata (#1005)

This commit is contained in:
KOLANICH 2023-09-21 13:48:38 +00:00 committed by GitHub
parent 9ec3e50e3b
commit 2c22f1e9c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -129,8 +129,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",
@ -197,7 +197,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",
}
)