13 lines
276 B
Python
13 lines
276 B
Python
|
|
"""
|
|||
|
|
PPT-Station: 基于 Python 的 PPT 自动化生成服务
|
|||
|
|
通过 JSON 配置驱动,支持从多种数据源拉取数据并填充到 PPT 模板中
|
|||
|
|
"""
|
|||
|
|
|
|||
|
|
__version__ = "0.1.0"
|
|||
|
|
__author__ = "PPT-Station Team"
|
|||
|
|
|
|||
|
|
from ppt_station.config import settings
|
|||
|
|
|
|||
|
|
__all__ = ["settings"]
|
|||
|
|
|