- Follow the steps to install Poetry here.
- Install shellcheck
Running make
without any target will create
the poetry virtual env, run several checks
including the unit tests:
make
make install
The following step will update the dependencies in poetry.lock
:
make update
Creates the tar file and wheel under dist
directory.
make build
To publish to test PYPI:
PYPI_PASSWORD="<token here>" make publish-test
To publish to production PYPI:
PYPI_PASSWORD="<token here>" make publish