文件预览

pyproject.toml

查看 FP-DCF 技能包中的文件内容。

文件内容

pyproject.toml

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "fp-dcf"
version = "0.6.0"
description = "First-principles DCF skill scaffold for LLM agents and quantitative research workflows."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
  "akshare>=1.18.54",
  "baostock>=0.8.9",
  "numpy>=1.26",
  "pandas>=2.2",
  "yfinance>=0.2.54",
  "matplotlib>=3.8",
]
keywords = ["dcf", "valuation", "finance", "llm", "mcp", "yfinance", "akshare", "baostock"]

[project.optional-dependencies]
dev = [
  "jsonschema>=4.23",
  "pytest>=8.0",
  "ruff>=0.4",
]
# Backward-compatible alias. The default runtime now includes matplotlib
# because the main CLI renders PNG/SVG sensitivity charts by default.
viz = [
  "matplotlib>=3.8",
]

[project.scripts]
fp-dcf = "fp_dcf.cli:main"
fp-dcf-sensitivity = "fp_dcf.sensitivity_cli:main"

[tool.setuptools]
[tool.setuptools.packages.find]
include = ["fp_dcf*"]

[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
  "integration: live network-backed integration tests",
]