- Add comprehensive README with wiring diagram, CLI reference, and examples - Fix supply VISA timeout during sweeps: read supply/load before meter wait, add retry wrapper for instrument queries, keepalive ping during auto-range - Fix load_setpoint not recorded in voltage sweep CSV - Add load current sweep command (sweep-load) - Increase HIOKI auto-range wait to 30 retries x 2s Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
675 B
TOML
28 lines
675 B
TOML
[project]
|
|
name = "mppt-testbench"
|
|
version = "0.1.0"
|
|
description = "MPPT tracker testbench: IT6500D (solar sim) + Prodigit 3366G (load) + HIOKI 3193-10 (power analyzer)"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"matplotlib>=3.10.8",
|
|
"pyvisa>=1.16.2",
|
|
"pyvisa-py>=0.8.1",
|
|
"pyserial>=3.5",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["testbench"]
|
|
|
|
[tool.hatch.build.targets.wheel.force-include]
|
|
"IT6500D/it6500" = "it6500"
|
|
"PRODIGIT-3366G/prodigit3366g" = "prodigit3366g"
|
|
"HIOKI-3193-10/hioki3193" = "hioki3193"
|
|
|
|
[project.scripts]
|
|
mppt = "testbench.cli:main"
|