From dfd7da80bb2eecf211cbec23453991b37e82882a Mon Sep 17 00:00:00 2001 From: Peter Jiping Xie Date: Fri, 26 Apr 2024 10:00:41 +1000 Subject: [PATCH] export setup_logger --- pxutil/__init__.py | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pxutil/__init__.py b/pxutil/__init__.py index 0508004..eb7a874 100755 --- a/pxutil/__init__.py +++ b/pxutil/__init__.py @@ -26,5 +26,6 @@ import_any, ChatAPI, list_module_contents, + setup_logger, ) from .pxutil_cy import run_loop, fib diff --git a/setup.py b/setup.py index 035e3dc..21ce94e 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup, Extension from Cython.Build import cythonize -_version = "0.0.27" +_version = "0.0.28" with open("README.md") as readme: long_description = readme.read()