Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 641 Bytes

DEVELOPMENT.md

File metadata and controls

41 lines (26 loc) · 641 Bytes

Init environment

The following make commands will install conda and create a conda env called pearl:

make install-conda
make init-env-conda

Install Pearl package and its dev dependencies

make install

Update dependencies

The following step will update the dependencies in requirements-dev.in and include them into the file requirements-dev.txt:

make upgrade

Build the wheel and source distribution

Creates the tar file and wheel under dist directory.

make dist

Publishing

Uses twine which separates the build from the actual upload:

make release