mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-23 06:35:42 +00:00
17 lines
372 B
Python
17 lines
372 B
Python
# SPDX-License-Identifier: 0BSD
|
|
|
|
"""Move Poetry-built wheels from ``dist/`` into ``python-dist/``.
|
|
|
|
Avoids filename clashes with Electron build outputs.
|
|
"""
|
|
|
|
import shutil
|
|
from pathlib import Path
|
|
|
|
dist = Path("dist")
|
|
target = Path("python-dist")
|
|
target.mkdir(parents=True, exist_ok=True)
|
|
|
|
for wheel in dist.glob("*.whl"):
|
|
shutil.move(str(wheel), target / wheel.name)
|