2f855bf720
The packaged exe crashed with ModuleNotFoundError: No module named 'PySide6'. Root cause: `pip install -e .` aborted because netifaces has no wheel for the build's Python and needs MSVC to compile from source, so NO dependencies were installed — and the workflow didn't catch it (native-command failures don't trip $ErrorActionPreference, and the next pip command succeeded). - Replace netifaces with a dependency-free socket-based LAN IP detection in the GUI; remove netifaces from pyproject and all PyInstaller specs. - Make pip failures fatal (check $LASTEXITCODE) and add a "Verify runtime imports" step that fails the build before bundling if any dep is missing. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
64 lines
1.2 KiB
TOML
64 lines
1.2 KiB
TOML
[project]
|
|
name = "macropad-server"
|
|
version = "0.9.5"
|
|
description = "A cross-platform macro management application with desktop and web interfaces"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "jknapp"}
|
|
]
|
|
keywords = ["macropad", "macro", "automation", "keyboard", "pwa"]
|
|
|
|
dependencies = [
|
|
# Image processing
|
|
"pillow>=10.0.0",
|
|
# Keyboard/mouse automation
|
|
"pyautogui>=0.9.54",
|
|
"pyperclip>=1.8.0",
|
|
# System tray
|
|
"pystray>=0.19.5",
|
|
# Web server
|
|
"fastapi>=0.104.0",
|
|
"uvicorn>=0.24.0",
|
|
"websockets>=12.0",
|
|
"python-multipart>=0.0.6", # For file uploads
|
|
# QR code generation
|
|
"qrcode>=7.4.2",
|
|
# Desktop GUI
|
|
"PySide6>=6.6.0",
|
|
# Relay client
|
|
"aiohttp>=3.9.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.4.0",
|
|
"black>=23.0.0",
|
|
"ruff>=0.1.0",
|
|
"pyinstaller>=6.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
macropad-server = "main:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["gui"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pyinstaller>=6.0.0",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
target-version = ["py311"]
|