16 lines
562 B
TOML
16 lines
562 B
TOML
[project]
|
||
name = "gptautoplus"
|
||
version = "0.1.0"
|
||
description = "Add your description here"
|
||
readme = "README.md"
|
||
requires-python = ">=3.12"
|
||
dependencies = [
|
||
"curl-cffi>=0.7.0", # TLS 指纹伪装
|
||
"pydantic>=2.5.0", # 数据验证
|
||
"pydantic-settings>=2.1.0", # 配置管理
|
||
"loguru>=0.7.2", # 日志系统
|
||
"python-dotenv>=1.0.0", # 环境变量加载
|
||
"httpx>=0.25.0", # 异步 HTTP 客户端(可选,用于外部 API)
|
||
"python-telegram-bot[job-queue]>=20.7", # Telegram Bot
|
||
]
|