mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
This adds a pyproject.toml to generate Python wheels using poetry. The toml file is generated by cmake to add build dependend information to the file. On Windows the build process invokes poetry using the configured Python executable. The existing distribution way (copy python data to site-packages folder of UHD installation) is not changed yet.
13 lines
315 B
Python
13 lines
315 B
Python
"""Build definition for UHD Python module
|
|
|
|
Copyright 2017-2018 Ettus Research, a National Instruments Company
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
"""
|
|
|
|
def build(setup_kwargs):
|
|
"""The build function is a noop.
|
|
|
|
The empty function forces poetry to build a platform specific wheel
|
|
"""
|
|
pass
|