uhd/host/python/build.py
Lars Amsel 22396d4666 host: python: Add pyproject.toml to enable poetry builds
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.
2024-12-10 13:02:52 +01:00

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