From e713781189271bdd2b8582b42ca3bfb3b65b50bf Mon Sep 17 00:00:00 2001 From: Elliot Ford Date: Tue, 21 Jul 2026 16:45:26 +0100 Subject: [PATCH] Add project urls to pyproject.toml This will make them clickable as links on Pypi, and also to other consumers of 'Well-known Project URLs in Metadata' https://packaging.python.org/en/latest/specifications/well-known-project-urls/ --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 78b2f9e1..52b9f8c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,6 +50,10 @@ dev = [ "sphinx-autodoc-typehints>=2.3.0; python_version<'3.10'", "sphinx-autodoc-typehints>=2.4.0; python_version>='3.10'", ] +[project.urls] +Repository = "https://github.com/bayesian-optimization/BayesianOptimization" +Documentation = "https://bayesian-optimization.github.io/BayesianOptimization" +Releases = "https://github.com/bayesian-optimization/BayesianOptimization/releases" [build-system] requires = ["uv_build>=0.7.21,<0.8.0"]