Skip to content

Commit

Permalink
pypi version
Browse files Browse the repository at this point in the history
  • Loading branch information
mrazekv committed Dec 13, 2024
1 parent 741a5ce commit 2403202
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand All @@ -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).

Expand Down
1 change: 1 addition & 0 deletions ariths_gen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@
)

from .pdk import *
from . __version__ import __version__
1 change: 1 addition & 0 deletions ariths_gen/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "1.1.2"

0 comments on commit 2403202

Please sign in to comment.