From 23e8500db018ab0c42b2d7aadeebe0c957a91115 Mon Sep 17 00:00:00 2001 From: craftsangjae Date: Mon, 16 Feb 2026 10:00:29 +0900 Subject: [PATCH 1/2] update name Signed-off-by: craftsangjae --- CLAUDE.md | 4 ++-- pyproject.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index b346e40..25e9f45 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -14,7 +14,7 @@ MuVERA (Multi-Vector Retrieval via Fixed Dimensional Encoding Algorithm) is a Py No config dataclasses, no encoding-type enums, no manual seed juggling. Just NumPy arrays in, NumPy arrays out. -**Distribution Plan**: The library will be published to PyPI for easy installation via `pip install muvera`. +**Distribution Plan**: The library will be published to PyPI for easy installation via `pip install muvera-python`. **Key use case**: Efficiently encode ColBERT-style multi-vector embeddings for retrieval without specialized infrastructure. @@ -200,7 +200,7 @@ Output dimension: `num_repetitions * 2^num_simhash_projections * projection_dime **OIDC Setup (one-time):** 1. Go to [PyPI](https://pypi.org) → Account settings → Publishing 2. Add a new pending publisher: - - PyPI Project Name: `muvera` + - PyPI Project Name: `muvera-python` - Owner: `craftsangjae` - Repository: `muvera-python` - Workflow: `publish.yml` diff --git a/pyproject.toml b/pyproject.toml index 3983fac..ce5ac61 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["hatchling"] build-backend = "hatchling.build" [project] -name = "muvera" +name = "muvera-python" version = "0.1.0" description = "MuVERA: Multi-Vector Retrieval via Fixed Dimensional Encodings" readme = "README.md" @@ -12,7 +12,7 @@ requires-python = ">=3.9" authors = [ { name = "craftsangjae" }, ] -keywords = ["muvera", "multi-vector", "retrieval", "embedding", "fixed-dimensional-encoding"] +keywords = ["muvera", "muvera-python", "multi-vector", "retrieval", "embedding", "fixed-dimensional-encoding"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", From a1992894c2b0272488f5c97f7104eb4eb8bcb7c7 Mon Sep 17 00:00:00 2001 From: craftsangjae Date: Mon, 16 Feb 2026 10:01:03 +0900 Subject: [PATCH 2/2] version up Signed-off-by: craftsangjae --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ce5ac61..a3344b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "muvera-python" -version = "0.1.0" +version = "0.1.1" description = "MuVERA: Multi-Vector Retrieval via Fixed Dimensional Encodings" readme = "README.md" license = "MIT"