-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,20 @@ | ||
## PyFlexFloat | ||
|
||
A Python wrapper around OPRECOMP's [FlexFloat](https://github.com/oprecomp/flexfloat) library. | ||
A Python wrapper around OPRECOMP's [FlexFloat](https://github.com/oprecomp/flexfloat) library, enabling arbitrary precision floating-point arithmetic emulation in Python. | ||
|
||
## Installation | ||
|
||
Clone the repository: | ||
` | ||
git clone https://github.com/colluca/pyflexfloat.git | ||
` | ||
Simply install via pip: | ||
``` | ||
pip install pyflexfloat | ||
``` | ||
|
||
Enter the local repository folder: | ||
` | ||
cd pyflexfloat | ||
` | ||
For developers, you can create an editable installation, to test your changes to the source code: | ||
``` | ||
pip install -e . | ||
``` | ||
|
||
Install in your active Python environment: | ||
` | ||
pip install . | ||
` | ||
|
||
Test installation: | ||
` | ||
Test the installation: | ||
``` | ||
./test/test.py | ||
` | ||
``` |