添加项目基础文件结构,包括: - README.md 占位文件 - Python 版本配置文件 - gitignore 配置 - 项目配置文件 - 项目依赖配置 - 定时任务调度器 - 微信消息发送主逻辑 - 飞书消息通知功能
15 lines
283 B
TOML
15 lines
283 B
TOML
[project]
|
|
name = "wxmsg"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"wxauto",
|
|
"lark-oapi",
|
|
"schedule"
|
|
]
|
|
|
|
[[tool.uv.index]]
|
|
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
|
|
default = true |