mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-21 15:35:44 +00:00
15 lines
339 B
Python
15 lines
339 B
Python
"""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)
|