Metadata-Version: 2.1
Name: icerok_server
Version: 0.1.4
Summary: Measure you FPGA circuit!
Home-page: https://github.com/FPGAwars/icerok-server-python
Author: Juan Gonzalez (Obijuan)
Author-email: obijuan.cube@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Dist: pyserial >= 3.5

# icerok-server
Receive data from the icerok circuits on the FPGA

* Package in pypi: [icerok_server](https://pypi.org/project/icerok_server/)

## Installation

TODO


## Developers

### First clone

Make sure you create a virtual environment

* Install `python3-venv`

```
sudo apt install python3-venv
```

* Create the virtual environment

```
cd icerok-server-python
. env/bin/activate
```

* Install `flit`

```
pip install flit
```

### Run all the checks

```
tox
```

### Execute `icerok-server`

```
python3 icerok_server/main.py
```

### Publish in TestPyPi

```
flit publish --repository pypitest
```

### Publish package

* Increase version number in `icerok_server/__init__.py`
* Execute:
```
flit publish
```
