pypi version

This commit is contained in:
Vojta 2024-12-13 13:06:34 +01:00
parent 741a5ceab1
commit 240320200b
3 changed files with 13 additions and 0 deletions

View File

@ -1,5 +1,6 @@
# ArithsGen tool for arithmetic circuits generation
[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
[![PyPI version fury.io](https://badge.fury.io/py/ariths-gen.svg)](https://pypi.python.org/pypi/ariths-gen/)
[![Documentation](https://img.shields.io/badge/api-reference-blue.svg)](https://ehw-fit.github.io/ariths-gen)
[![arXiv](https://img.shields.io/badge/arXiv-2203.04649-b31b1b.svg)](https://arxiv.org/abs/2203.04649)
@ -26,6 +27,16 @@ When you use this tool in your work/research, please cite the following article:
}
```
## Instalation
```bash
pip install ariths-gen
python << EOF
import ariths_gen
print(ariths_gen.__version__)
EOF
```
## Prebuild circuits
To enable fast work with the circuits, we published pre-build arithmetic circuits in various formats in [generated_circuits](generated_circuits) folder and as a [Release](https://github.com/ehw-fit/ariths-gen/releases).

View File

@ -16,3 +16,4 @@ from .multi_bit_circuits import (
)
from .pdk import *
from . __version__ import __version__

View File

@ -0,0 +1 @@
__version__ = "1.1.2"