forked from pyinstaller/pyinstaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
272 lines (220 loc) · 9.83 KB
/
setup.py
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#-----------------------------------------------------------------------------
# Copyright (c) 2005-2022, PyInstaller Development Team.
#
# Distributed under the terms of the GNU General Public License (version 2
# or later) with exception for distributing the bootloader.
#
# The full license is in the file COPYING.txt, distributed with this software.
#
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
#-----------------------------------------------------------------------------
import sys
import os
import subprocess
from typing import Type
from setuptools import setup, find_packages
#-- plug-in building the bootloader
from distutils.core import Command
from distutils.command.build import build
# Hack required to allow compat to not fail when pypiwin32 isn't found
os.environ["PYINSTALLER_NO_PYWIN32_FAILURE"] = "1"
try:
from wheel.bdist_wheel import bdist_wheel
except ImportError:
raise SystemExit("Error: Building wheels requires the 'wheel' package. Please `pip install wheel` then try again.")
class build_bootloader(Command):
"""
Wrapper for distutil command `build`.
"""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def bootloader_exists(self):
# Checks if the console, non-debug bootloader exists
from PyInstaller import HOMEPATH, PLATFORM
from PyInstaller.compat import is_win, is_cygwin
exe = 'run'
if is_win or is_cygwin:
exe = 'run.exe'
exe = os.path.join(HOMEPATH, 'PyInstaller', 'bootloader', PLATFORM, exe)
return os.path.isfile(exe)
def compile_bootloader(self):
import subprocess
from PyInstaller import HOMEPATH
src_dir = os.path.join(HOMEPATH, 'bootloader')
cmd = [sys.executable, './waf', 'configure', 'all']
rc = subprocess.call(cmd, cwd=src_dir)
if rc:
raise SystemExit('ERROR: Failed compiling the bootloader. Please compile manually and rerun setup.py')
def run(self):
if getattr(self, 'dry_run', False):
return
if self.bootloader_exists() and not os.environ.get("PYINSTALLER_COMPILE_BOOTLOADER"):
return
print(
'No precompiled bootloader found or compile forced. Trying to compile the bootloader for you ...',
file=sys.stderr
)
self.compile_bootloader()
class MyBuild(build):
# plug `build_bootloader` into the `build` command
def run(self):
self.run_command('build_bootloader')
build.run(self)
# --- Builder classes for separate per-platform wheels. ---
class Wheel(bdist_wheel):
"""
Base class for building a wheel for one platform, collecting only the relevant bootloaders for that platform.
"""
# The setuptools platform tag.
PLAT_NAME = "manylinux2014_x86_64"
# The folder of bootloaders from PyInstaller/bootloaders to include.
PYI_PLAT_NAME = "Linux-64bit-intel"
ICON_TYPES = []
def finalize_options(self):
# Inject the platform name.
self.plat_name = self.PLAT_NAME
self.plat_name_supplied = True
if not self.has_bootloaders():
raise SystemExit(
f"Error: No bootloaders for {self.PLAT_NAME} found in {self.bootloaders_dir()}. See "
f"https://pyinstaller.readthedocs.io/en/stable/bootloader-building.html for how to compile them."
)
self.distribution.package_data = {
"PyInstaller": [
# And add the correct bootloaders as data files.
f"bootloader/{self.PYI_PLAT_NAME}/*",
*(f"bootloader/images/*.{suffix}" for suffix in self.ICON_TYPES),
# These files need to be explicitly included as well.
"fake-modules/*.py",
"hooks/rthooks.dat",
"lib/README.rst",
],
}
super().finalize_options()
def run(self):
# Note that 'clean' relies on clean::all=1 being set in the `setup.cfg` or the build cache "leaks" into
# subsequently built wheels.
self.run_command("clean")
super().run()
@classmethod
def bootloaders_dir(cls):
"""
Locate the bootloader folder inside the PyInstaller package.
"""
return f"PyInstaller/bootloader/{cls.PYI_PLAT_NAME}"
@classmethod
def has_bootloaders(cls):
"""
Does the bootloader folder exist and is there anything in it?
"""
dir = cls.bootloaders_dir()
return os.path.exists(dir) and len(os.listdir(dir))
# Map PyInstaller platform names to their setuptools counterparts. Other OSs can be added as and when we start shipping
# wheels for them.
PLATFORMS = {
"Windows-64bit": "win_amd64",
"Windows-32bit": "win32",
# The manylinux version tag depends on the glibc version compiled against. If we ever change the docker image used
# to build the bootloaders, we must check/update this tag. These are the only architectures currently supported
# by manylinux. Other platforms must use the generic bdist_wheel command, which will produce a wheel that is not
# allowed on PyPI.
"Linux-64bit-intel": "manylinux2014_x86_64",
"Linux-32bit-intel": "manylinux2014_i686",
"Linux-64bit-arm": "manylinux2014_aarch64",
"Linux-64bit-ppc": "manylinux2014_ppc64le",
"Linux-64bit-s390x": "manylinux2014_s390x",
"Linux-64bit-intel-musl": "musllinux_1_1_x86_64",
"Linux-64bit-arm-musl": "musllinux_1_1_aarch64",
# macOS needs special handling. This gets done dynamically later.
"Darwin-64bit": None,
}
# Create a subclass of Wheel() for each platform.
wheel_commands = {}
for (pyi_plat_name, plat_name) in PLATFORMS.items():
# This is the name it will have on the setup.py command line.
command_name = "wheel_" + pyi_plat_name.replace("-", "_").lower()
# Create and register the subclass, overriding the PLAT_NAME and PYI_PLAT_NAME attributes.
platform = {"PLAT_NAME": plat_name, "PYI_PLAT_NAME": pyi_plat_name}
command: Type[Wheel] = type(command_name, (Wheel,), platform)
command.description = f"Create a {command.PYI_PLAT_NAME} wheel"
wheel_commands[command_name] = command
class bdist_macos(wheel_commands["wheel_darwin_64bit"]):
def finalize_options(self):
"""
Choose a platform tag that reflects the platform of the bootloaders.
Namely:
* The minimum supported macOS version should mirror that of the bootloaders.
* The architecture should similarly mirror the bootloader architecture(s).
"""
try:
from PyInstaller.utils.osx import get_binary_architectures, macosx_version_min
except ImportError:
raise SystemExit(
"Building wheels for macOS requires that PyInstaller and macholib be installed. Please run:\n"
" pip install -e . macholib"
)
bootloader = os.path.join(self.bootloaders_dir(), "run")
is_fat, architectures = get_binary_architectures(bootloader)
if is_fat and sorted(architectures) == ["arm64", "x86_64"]:
# An arm64 + x86_64 dual architecture binary gets the special name universal2.
architectures = "universal2"
else:
# It is unlikely that there will be other multi-architecture types, but if one crops up, the syntax is to
# join them with underscores.
architectures = "_".join(architectures)
# Fetch the macOS deployment target the bootloaders are compiled with and set that in the tag too.
version = "_".join(map(str, macosx_version_min(bootloader)[:2]))
self.PLAT_NAME = f"macosx_{version}_{architectures}"
super().finalize_options()
wheel_commands["wheel_darwin_64bit"] = bdist_macos
wheel_commands["wheel_darwin_64bit"].ICON_TYPES = ["icns"]
wheel_commands["wheel_windows_32bit"].ICON_TYPES = wheel_commands["wheel_windows_64bit"].ICON_TYPES = ["ico"]
class bdist_wheels(Command):
"""
Build a wheel for every platform listed in the PLATFORMS dict, which has bootloaders available in
`PyInstaller/bootloaders/[platform-name]`.
"""
description = "Build all available wheel types"
# Overload these to keep the abstract metaclass happy.
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self) -> None:
command: Type[Wheel]
for (name, command) in wheel_commands.items():
if not command.has_bootloaders():
print("Skipping", name, "because no bootloaders were found in", command.bootloaders_dir())
continue
print("running", name)
# This should be `self.run_command(name)`, but there is some aggressive caching from distutils, which has
# to be suppressed by us using forced cleaning. One distutils behaviour that seemingly cannot be disabled
# is that each command should only run once - this is at odds with what we want, because we need to run
# 'build' for every platform. The only way I can get it not to skip subsequent builds is to isolate the
# processes completely using subprocesses...
subprocess.run([sys.executable, __file__, "-q", name], stderr=subprocess.PIPE, check=True)
#--
setup(
setup_requires=["setuptools >= 39.2.0"],
cmdclass={
'build_bootloader': build_bootloader,
'build': MyBuild,
**wheel_commands,
'bdist_wheels': bdist_wheels,
},
packages=find_packages(include=["PyInstaller", "PyInstaller.*"]),
package_data={
"PyInstaller": [
# Include all bootloaders in wheels by default.
"bootloader/*/*",
# These files need to be explicitly included as well.
"fake-modules/*.py",
"hooks/rthooks.dat",
"lib/README.rst",
],
},
)