-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
43dc3ce
commit ae5ff74
Showing
4 changed files
with
67 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Adopted from pillow and pycapnp | ||
|
||
import sys | ||
|
||
from setuptools.build_meta import * # noqa: F401, F403 | ||
from setuptools.build_meta import build_wheel | ||
|
||
backend_class = build_wheel.__self__.__class__ | ||
|
||
|
||
class _CustomBuildMetaBackend(backend_class): | ||
def run_setup(self, setup_script="setup.py"): | ||
if self.config_settings: | ||
flags = [] | ||
for key, values in self.config_settings.items(): | ||
if values == "True": | ||
flags.append(f"--{key}") | ||
if flags: | ||
sys.argv = sys.argv[:1] + ["build_ext"] + flags + sys.argv[1:] | ||
return super().run_setup(setup_script) | ||
|
||
def build_wheel( | ||
self, wheel_directory, config_settings=None, metadata_directory=None | ||
): | ||
self.config_settings = config_settings | ||
return super().build_wheel(wheel_directory, config_settings, metadata_directory) | ||
|
||
def build_editable( | ||
self, wheel_directory, config_settings=None, metadata_directory=None | ||
): | ||
self.config_settings = config_settings | ||
return super().build_editable( | ||
wheel_directory, config_settings, metadata_directory | ||
) | ||
|
||
_backend = _CustomBuildMetaBackend() | ||
build_wheel = _backend.build_wheel | ||
build_editable = _backend.build_editable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters