From ff0233600708fa3fe2d5c0c6f57e73dc9f3add42 Mon Sep 17 00:00:00 2001 From: OleehyO Date: Mon, 21 Apr 2025 02:36:13 +0000 Subject: [PATCH] [feat] Support dynamic package vcs --- texteller/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/texteller/__init__.py b/texteller/__init__.py index 369cb6d..c40e6f0 100644 --- a/texteller/__init__.py +++ b/texteller/__init__.py @@ -1 +1,5 @@ +from importlib.metadata import version + from texteller.api import * + +__version__ = version("texteller")