Add initial project structure and configuration files

This commit is contained in:
Jack.Le
2026-05-18 14:14:16 -07:00
commit b9adc7c0b8
41 changed files with 94365 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wafer-edge-detection"
version = "0.1.0"
description = "PySide6 demo for a wafer edge position monitor (CSV replay, circle fit, offset UI)."
requires-python = ">=3.11"
dependencies = [
"PySide6>=6.7",
"numpy>=1.26",
]
[project.scripts]
wafer-user = "wafer_edge.App:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"wafer_edge.ui" = ["Theme.qml"]