0.1.0
This commit is contained in:
13
scripts/move_wheels.py
Normal file
13
scripts/move_wheels.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""Move Poetry-built wheels from dist/ to python-dist/ to avoid conflicts
|
||||
with Electron build artifacts.
|
||||
"""
|
||||
|
||||
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)
|
||||
Reference in New Issue
Block a user