23 lines
501 B
TOML
23 lines
501 B
TOML
[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"]
|