diff options
| author | StevenWdV <stevenwdv@gmail.com> | 2021-12-03 12:31:30 +0100 |
|---|---|---|
| committer | StevenWdV <stevenwdv@gmail.com> | 2021-12-03 12:31:30 +0100 |
| commit | b60eadf76f92d7f8878fcbec6de7ab6ea4572a89 (patch) | |
| tree | dc5f54de407721ef45f3e9860642efe43bfe6b2a /wrappers/python/README.md | |
| parent | e4744fd94236944569bfed27af80a604b7668e4b (diff) | |
Add initial Python wheel support
Diffstat (limited to 'wrappers/python/README.md')
| -rw-r--r-- | wrappers/python/README.md | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/wrappers/python/README.md b/wrappers/python/README.md index fddcde6..b849e62 100644 --- a/wrappers/python/README.md +++ b/wrappers/python/README.md @@ -4,11 +4,32 @@ Python 3.6+ is assumed, but it may work with older versions. -## Test +TODO Build + +## Build & test First build the shared Go library. Next: -No dependencies, just reference `discovery.py` and call `verify`. +Build wheel using library for current platform: + +```shell +make +``` + +Build wheel using library for specified platform (passed to setuptools `--plat-name`): + +```shell +make PLAT_NAME=win32 +``` + +To install the wheel, run: + +```shell +pip install dist/eduvpncommon-[version]-py3-none-[platform].whl +``` + +You could also reference the discovery module directly and copy the library for the platform to the `eduvpncommon/lib` +folder. Test: |
