From 1aeab67a003a847c770730d7eae90e831d223a32 Mon Sep 17 00:00:00 2001 From: mamu Date: Wed, 15 May 2024 18:14:44 +0900 Subject: [PATCH] Refractor pyproject.toml --- pyproject.toml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fc13424..0dfa62b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,17 +5,18 @@ build-backend = "setuptools.build_meta" [project] name = "optunahub" description = "OptunaHub" -version = "0.0.2" readme = "README.md" authors = [ - {name = "Yoshihiko Ozaki"} + {name = "Optuna team"} ] +requires-python = ">=3.8" dependencies = [ "ga4mp", "optuna", "PyGithub", "toml", ] +dynamic = ["version"] [project.optional-dependencies] checking = [ @@ -30,9 +31,18 @@ docs = [ "sphinx_rtd_theme", ] +[project.urls] +homepage = "TBD" +repository = "https://github.com/optuna/optunahub" +documentation = "TBD" +bugtracker = "https://github.com/optuna/optunahub/issues" + [tool.setuptools.packages.find] include = ["optunahub*"] +[tool.setuptools.dynamic] +version = {attr = "optunahub.version.__version__"} + [tool.ruff] line-length = 99