From bd954fe7c4066237e96bc4cea13fa5ca2266dcff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9D=92=E8=BD=A9?= Date: Thu, 22 Aug 2024 16:58:59 +0800 Subject: [PATCH] modify pyproject.toml to roll version --- memoryscope/__init__.py | 3 ++- pyproject.toml | 10 +++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) 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"]