Files
stock-cli/pyproject.toml
yakenator d972b84fb4 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>
2026-02-23 13:50:55 +09:00

21 lines
412 B
TOML

[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"]