Files
HIOKI-3193-10/pyproject.toml
grabowski 62f3a3690e Add post-processing tool: clean and plot CSV data
hioki-clean clean <file> - removes error rows and settle artifacts
after auto-range transitions. hioki-clean plot <file> - visualizes
CSV data with grouped subplots (voltage, current, power, efficiency).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-10 17:45:58 +07:00

23 lines
510 B
TOML

[project]
name = "hioki-3193"
version = "0.1.0"
description = "HIOKI 3193-10 Power Analyzer GPIB control tools for solar MPPT efficiency testing"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"matplotlib>=3.10.8",
"pyvisa>=1.16.2",
"pyvisa-py>=0.8.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["hioki3193"]
[project.scripts]
hioki = "hioki3193.cli:main"
hioki-clean = "hioki3193.postprocess:main"