diff --git a/README.md b/README.md index cfdd0840..55079805 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,8 @@ OptunaHub Registry ================== -__NOTICE: OptunaHub Registry is currently under preparation. We do not accept requests for package registration from the general public.__ +OptunaHub Registry is a registry service for sharing and discovering user-defined Optuna packages. It provides a platform for users to share their Optuna packages with others and discover useful packages created by other users. + +See the [OptunaHub Website](https://optuna.github.io/optunahub-web/) for registered packages. + +See also the [OptunaHub API documentation](https://optuna.github.io/optunahub/) for the API to use the registry, and the [OptunaHub tutorial](https://optuna.github.io/optunahub-registry/recipes/001_first.html) for how to register and discover packages. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 2dde8014..614ecce7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,10 +42,10 @@ documentation = "https://optuna.github.io/optunahub-registry/" bugtracker = "https://github.com/optuna/optunahub-registry/issues" [tool.setuptools.packages.find] -include = ["optunahub-registry*", "package*"] +include = ["package*"] [tool.setuptools.dynamic] -version = {attr = "optunahub-registry.version.__version__"} +version = {attr = "version.__version__"} [tool.ruff] line-length = 99 diff --git a/optunahub-registry/version.py b/version.py similarity index 100% rename from optunahub-registry/version.py rename to version.py