1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
# Create bin/buildout script.
# This should be called with python from a virtualenv that has all our
# dependencies already installed.
from pathlib import Path
import build
import os
import pkg_resources
import platform
import sys
EGG_INFO_PATH = "src/zc.buildout.egg-info"
if not os.path.exists(EGG_INFO_PATH):
print(f"ERROR: {EGG_INFO_PATH} does not exist.")
print("You should run 'python -m build --sdist' (or 'python setup.py egg_info').")
sys.exit(1)
# The 'bin' directory must exist.
os.makedirs('bin', exist_ok=True)
# zc.buildout must be importable in the current session.
pkg_resources.working_set.add_entry('src')
# Now this import should work.
# Important note: isort must NOT move this line.
import zc.buildout.easy_install
# And then Buildout can install its own script.
zc.buildout.easy_install.scripts(
['zc.buildout'], pkg_resources.working_set, sys.executable, 'bin'
)
if platform.system() == "Windows":
buildout_script = Path("bin/buildout.exe")
else:
buildout_script = Path("bin/buildout")
if buildout_script.exists():
print(f"SUCCESS: Generated {buildout_script} script.")
if platform.system() != "Windows":
# On Windows you get a UnicodeDecodeError that I don't want to debug.
print(buildout_script.read_text())
else:
print(f"ERROR: Generating {buildout_script} failed.")
sys.exit(1)
|