-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pip install configuration settings
* To enable debug mode and/or libmeshb * Close #20
- Loading branch information
1 parent
14b89b0
commit 1002cde
Showing
4 changed files
with
63 additions
and
4 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,29 @@ | ||
# adapted from https://github.com/python-pillow/Pillow/blob/main/_custom_build/backend.py | ||
# see also https://peps.python.org/pep-0517/#in-tree-build-backends | ||
import sys | ||
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: | ||
print(self.config_settings, file=sys.stderr) | ||
flags = [] | ||
if self.config_settings.get("debug", "false").lower() == "true": | ||
flags += ["--debug"] | ||
if self.config_settings.get("meshb", "false").lower() == "true": | ||
flags += ["--features=meshb"] | ||
if flags: | ||
sys.argv = sys.argv[:1] + ["build_rust"] + 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) | ||
|
||
|
||
build_wheel = _CustomBuildMetaBackend().build_wheel |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel", "setuptools-rust"] | ||
build-backend = "backend" | ||
backend-path = ["_custom_build"] |
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