feat: CLI tool for stock analysis pipeline management

- Command-line interface for triggering collection and analysis
- Pipeline orchestration commands
- Integration with all microservices via Redis Streams

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
yakenator
2026-02-23 13:50:55 +09:00
commit d972b84fb4
4 changed files with 149 additions and 0 deletions

20
pyproject.toml Normal file
View File

@ -0,0 +1,20 @@
[project]
name = "stock-cli"
version = "0.1.0"
description = "CLI orchestration and reporting for stock analysis pipeline"
requires-python = ">=3.12"
dependencies = [
"stock-common",
"typer>=0.12",
"rich>=13.0",
]
[project.scripts]
stock = "stock_cli.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/stock_cli"]