Skip to content

Commit

Permalink
Refractor pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
HideakiImamura committed May 15, 2024
1 parent 6ecef92 commit 1aeab67
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 1aeab67

Please sign in to comment.