Skip to content

Commit

Permalink
Merge pull request #8 from optuna/refactor-pyproject-toml
Browse files Browse the repository at this point in the history
Refractor pyproject.toml
  • Loading branch information
HideakiImamura authored May 15, 2024
2 parents 6ecef92 + 1aeab67 commit 85e591c
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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

Expand Down

0 comments on commit 85e591c

Please sign in to comment.