- 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>
21 lines
412 B
TOML
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"]
|