16 lines
387 B
TOML
16 lines
387 B
TOML
[project]
|
|
name = "updatedb"
|
|
version = "0.1.0"
|
|
description = "定时从微信公众号平台获取视频与文章数据,同步到远端数据库"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"httpx>=0.27",
|
|
"psycopg2-binary>=2.9",
|
|
"apscheduler>=3.10",
|
|
"python-dotenv>=1.0",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["main", "config", "wechat", "db", "sync"]
|