Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 744 Bytes

BUILD.md

File metadata and controls

27 lines (18 loc) · 744 Bytes

Build

Building subpackages and uploading to pypi

  1. Within a subpackage, make sure the version is updated in pyproject.toml.
  2. Install prerequisites:
python -m pip install --upgrade pip
python -m pip install --upgrade build twine
  1. Update the version number in the lib//pyproject.toml. Packages use standard semver.

  2. Build the distribution within the subpackage. For example, to build the fixedpointmath package,

python -m build
  1. Upload to pypi. The below command will ask for a username and password.
python -m twine upload --repository pypi dist/*

TODO figure out how to expand access across one current account (currently fixedpointmath is published under slundquist)