Plan-fase: repo-skjelett, dokumentasjon (research + inkrementell plan), Python/uv-oppsett, MAF-avhengighet. Ingen rammeverkskode ennå. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01H9FyyENxebxVThjrn9et8C
32 lines
712 B
TOML
32 lines
712 B
TOML
[project]
|
|
name = "portfolio-optimiser"
|
|
version = "0.1.0"
|
|
description = "Generic framework on Microsoft Agent Framework for per-project cost-savings optimization"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
# MAF core. Foundry-provider-pakke/-extra avklares ved Foundry-wiring (Fase 0/1).
|
|
"agent-framework>=1.8.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8",
|
|
"ruff>=0.6",
|
|
"mypy>=1.11",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/portfolio_optimiser"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
src = ["src", "tests"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
testpaths = ["tests"]
|