Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 907 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 907 Bytes

gfloat: Generic floating-point types in Python

An implementation of generic floating point encode/decode logic, handling various current and proposed floating point types:

See https://gfloat.readthedocs.io for documentation.

BUILDING

pip install -e .
cd docs 
make html
cd ..

Pushing

rm -rf dist
pip install build twine
python -m build
echo __token__ | twine upload --repository pypi dist/* --verbose

Notes

All NaNs are the same, with no distinction between signalling or quiet, or between differently encoded NaNs.