Skip to content

Latest commit

 

History

History
52 lines (33 loc) · 837 Bytes

DEVELOPMENT.md

File metadata and controls

52 lines (33 loc) · 837 Bytes

Install Requirements

Init environment

Running make without any target will create the poetry virtual env, run several checks including the unit tests:

make

Install Pearl package and its dev dependencies

make install

Update dependencies

The following step will update the dependencies in poetry.lock:

make update

Build the wheel and source distribution

Creates the tar file and wheel under dist directory.

make build

Publishing

To publish to test PYPI:

PYPI_PASSWORD="<token here>" make publish-test

To publish to production PYPI:

PYPI_PASSWORD="<token here>" make publish