From 4a564b0b69b4a8e98d1daa8073d2bcb2f313d1cd Mon Sep 17 00:00:00 2001 From: KOLANICH Date: Mon, 13 Feb 2023 17:24:24 +0300 Subject: [PATCH] Add the links to the GitHub repo into package metadata. --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 78b0b72..9492075 100755 --- a/setup.py +++ b/setup.py @@ -9,6 +9,10 @@ packages = ['optunity', 'optunity.tests', 'optunity.solvers'], scripts = [], url = 'http://www.optunity.net', + project_urls = { + "Source Code": "https://github.com/claesenm/optunity", + "Bug Tracker": "https://github.com/claesenm/optunity/issues", + }, license = 'LICENSE.txt', description = 'Optimization routines for hyperparameter tuning.', long_description = open('README.rst').read(),