Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/j2kun/pmfp-code

Source code for the book Practical Math for Programmers
https://github.com/j2kun/pmfp-code

mathematics

Last synced: about 2 months ago
JSON representation

Source code for the book Practical Math for Programmers

Awesome Lists containing this project

README

        

# Practical Math for Programmers

[![Coverage Status](https://coveralls.io/repos/github/j2kun/pmfp-code/badge.svg?branch=main)](https://coveralls.io/github/j2kun/pmfp-code?branch=main)

This is the source code respository for the book, Practical Math for Programmers.

## Running tests

Requires at least Python 3.10.

```
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt
```

To run the test suite:

```
pytest

# with code coverage
pytest --cov-report html:cov_html --cov-report annotate:cov_annotate --cov
```