feat(strategy_pythagoras): scaffold workspace member + register in uv

This commit is contained in:
Adriano Dal Pastro
2026-05-19 13:12:23 +00:00
parent 14f476dd09
commit 37558a34f5
11 changed files with 131 additions and 2 deletions
+4 -2
View File
@@ -10,14 +10,16 @@ requires-python = ">=3.13"
dependencies = [
"multi-swarm-core",
"strategy-crypto",
"strategy-pythagoras",
]
[tool.uv.workspace]
members = ["src/multi_swarm_core", "src/strategy_crypto"]
members = ["src/multi_swarm_core", "src/strategy_crypto", "src/strategy_pythagoras"]
[tool.uv.sources]
multi-swarm-core = { workspace = true }
strategy-crypto = { workspace = true }
strategy-pythagoras = { workspace = true }
[dependency-groups]
dev = [
@@ -42,7 +44,7 @@ python_version = "3.13"
strict = true
[tool.pytest.ini_options]
testpaths = ["src/multi_swarm_core/tests", "src/strategy_crypto/tests"]
testpaths = ["src/multi_swarm_core/tests", "src/strategy_crypto/tests", "src/strategy_pythagoras/tests"]
addopts = "-v --tb=short --import-mode=importlib"
markers = [
"integration: tests that require external services (Cerbero, LLM API)",