Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.14 KB

build.md

File metadata and controls

34 lines (26 loc) · 1.14 KB

🏗️ Build Python Package

To build the python package, run the following command:

# Install python build dependencies:
pip install -r ./requirements/requirements.build.txt

# Build python package:
python -m build
# Or use the build script:
./scripts/build.sh

Build

# Install python build:
pip install -U build

# Build help:
python -m build --help

References