From 8fb5416ff2e88b51e2a1fb6014d628734f20c4ea Mon Sep 17 00:00:00 2001 From: Hongyu Chiu <20734616+james77777778@users.noreply.github.com> Date: Sun, 4 Feb 2024 11:17:41 +0800 Subject: [PATCH 1/3] Update `pyproject.toml` --- pyproject.toml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 723c1cd..a25d9d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,11 +4,23 @@ build-backend = "setuptools.build_meta" [project] name = "kimm" -description = "" -keywords = [] +description = "A Keras model zoo with pretrained weights." +keywords = [ + "deep-learning", + "model-zoo", + "keras", + "jax", + "tensorflow", + "torch", + "imagenet", + "pretrained-weights", + "timm", +] +authors = [{ name = "Hong-Yu Chiu", email = "james77777778@gmail.com" }] +maintainers = [{ name = "Hong-Yu Chiu", email = "james77777778@gmail.com" }] readme = "README.md" requires-python = ">=3.9" -license = { file = "LICENSE" } +license = "Apache License 2.0" classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", From 222cf7f91d51783e14c1c46a10fd0a0b359ba8f1 Mon Sep 17 00:00:00 2001 From: Hongyu Chiu <20734616+james77777778@users.noreply.github.com> Date: Sun, 4 Feb 2024 11:21:00 +0800 Subject: [PATCH 2/3] Add urls --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index a25d9d2..7042360 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,6 +37,12 @@ classifiers = [ dynamic = ["version"] dependencies = ["keras"] +[project.urls] +Homepage = "https://github.com/james77777778/keras-image-models" +Documentation = "https://github.com/james77777778/keras-image-models" +Repository = "https://github.com/james77777778/keras-image-models.git" +Issues = "https://github.com/james77777778/keras-image-models/issues" + [project.optional-dependencies] tests = [ # export From 7a6fb277497d2feea9594796e3f0f8ac9ad2eca6 Mon Sep 17 00:00:00 2001 From: Hongyu Chiu <20734616+james77777778@users.noreply.github.com> Date: Sun, 4 Feb 2024 11:22:07 +0800 Subject: [PATCH 3/3] Fix license --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7042360..d98351c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ authors = [{ name = "Hong-Yu Chiu", email = "james77777778@gmail.com" }] maintainers = [{ name = "Hong-Yu Chiu", email = "james77777778@gmail.com" }] readme = "README.md" requires-python = ">=3.9" -license = "Apache License 2.0" +license = { file = "LICENSE" } classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3",