summaryrefslogtreecommitdiff
path: root/wrappers/python/README.md
blob: 905d7d40883c9a7470ccef279aab2220c1fd80f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Python wrapper

## Requirements

Python 3.6+ is assumed, but it may work with older versions. To build, `setuptools`, `wheel` and `build` are required.

## Building

First build the shared Go library by following the instructions in the root directory of this Repo.

Then, to build the wheel use:

```shell
make pack
```

To install the wheel, run:

```shell
pip install dist/eduvpncommon-[version]-py3-none-[platform].whl
```

## Running tests
```shell
make test
```