feat: initial scaffold (Python framework on Microsoft Agent Framework)

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
This commit is contained in:
Kjell Tore Guttormsen 2026-06-23 22:01:22 +02:00
commit ec9ac74976
10 changed files with 575 additions and 0 deletions

32
pyproject.toml Normal file
View file

@ -0,0 +1,32 @@
[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"]