feat: add interactive folder selection for CSV saves and stabilize cross-platform dependency locking

This commit is contained in:
jack
2026-06-18 10:30:51 -07:00
parent e545c245d7
commit 1119733929
5 changed files with 201 additions and 36 deletions
+14 -2
View File
@@ -7,11 +7,16 @@ build-backend = "setuptools.build_meta"
[project]
name = "pygui"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"pyyaml>=6.0.3",
"scipy>=1.17.1",
"PySide6>=6.6.0",
"pyqtgraph>=0.13.0",
"numpy>=1.24.0",
"pyserial>=3.5",
"pandas>=2.0.0",
"matplotlib>=3.7.0",
"scipy>=1.17.1",
"pyyaml>=6.0.3",
]
[project.optional-dependencies]
@@ -84,3 +89,10 @@ files = [
dev = [
"pytest>=9.0.3",
]
[tool.uv]
environments = [
"sys_platform == 'darwin'",
"sys_platform == 'win32'",
"sys_platform == 'linux'",
]