Install the py-arithmetic package
Installation
Install py-arithmetic using the bash commands:
$ git clone https://github.com/chdemko/py-arithmetic.git
$ cd py-arithmetic
$ git submodule update --init --recursive
$ hatch shell
Building
Build py-arithmetic using the bash commands:
$ hatch build
$ ls dist
$ unzip -v dist/py_arithmetic-*.whl
Note that there is a compiled version of the source files written in the C language within the Python whl package.
Documentation
Build the documentation using the bash commands:
$ hatch run docs:build
Then, open the generated HTML documentation in your web browser:
$ xdg-open build/sphinx/html/index.html
Testing
Test py-arithmetic using the bash commands:
$ hatch test
$ hatch fmt --check