diff --git a/pyproject.toml b/pyproject.toml index 8af7cb5..2588518 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "hatchling.build" [project] name = "swankit" -version = "0.1.0b8" +version = "0.1.0b9" dynamic = ["readme"] description = "Base toolkit for SwanLab" license = "Apache-2.0" diff --git a/swankit/core/__init__.py b/swankit/core/__init__.py index 3ede970..b7e0d72 100644 --- a/swankit/core/__init__.py +++ b/swankit/core/__init__.py @@ -7,13 +7,14 @@ @Description: 核心解析模块工具 """ -from .data import BaseType, DataSuite, MediaBuffer, ParseResult, ParseErrorInfo +from .data import BaseType, MediaType, DataSuite, MediaBuffer, ParseResult, ParseErrorInfo from .settings import SwanLabSharedSettings ChartType = BaseType.Chart __all__ = [ "BaseType", + "MediaType", "ChartType", "DataSuite", "MediaBuffer",