diff --git a/memoryscope/__init__.py b/memoryscope/__init__.py index ed102c4f..8784080c 100644 --- a/memoryscope/__init__.py +++ b/memoryscope/__init__.py @@ -1,5 +1,6 @@ """ Version of MemoryScope.""" -__version__ = "0.1.0.4" +import importlib.metadata +__version__ = importlib.metadata.version("memoryscope") import fire diff --git a/pyproject.toml b/pyproject.toml index 8e364628..408bdd5c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,10 +10,14 @@ skip = "./examples,*.csv,*.html,*.json,*.jsonl,*.pdf,*.txt,*.ipynb" [tool.poetry] name = "memoryscope" -version = "0.1.0.4" +version = "0.1.1.0" description = "MemoryScope for LLM Agentic Application." -authors = ["Your Name "] -license = "MIT" +authors = = [ + "jinli ", + "qiantiancheng ", + "fuqingxu " +] +license = "Apache" readme = "README.md" keywords = ["Memory", "LLM"]