重写为 AI 情报 Agent 并接入 Jenkins 流水线

This commit is contained in:
Codex
2026-07-08 21:41:46 +08:00
commit f471c2a08a
45 changed files with 2163 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
[project]
name = "signalscout"
version = "0.1.0"
description = "A scheduled AI intelligence agent powered by Grok and GitHub search."
requires-python = ">=3.9,<3.13"
dependencies = [
"alembic==1.13.3",
"apscheduler==3.10.4",
"fastapi==0.115.6",
"pydantic==2.10.4",
"pydantic-settings==2.7.1",
"pymysql==1.1.1",
"python-dotenv==1.0.1",
"sqlalchemy==2.0.36",
"uvicorn[standard]==0.34.0",
]
[project.optional-dependencies]
dev = [
"pytest==8.3.4",
"ruff==0.8.6",
]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.setuptools.packages.find]
include = ["app*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]