Please release the python picosdk wrappers on PyPI

Post general discussions on using our drivers to write your own software here
Post Reply
ksunden
Newbie
Posts: 0
Joined: Thu Nov 19, 2020 4:29 am

Please release the python picosdk wrappers on PyPI

Post by ksunden »

PyPI is the standard way of installing packages in python. https://pypi.org/

Being on PyPI makes it easy for people to build on top of the sdk, such that downstream users automatically get the python wrappers as a dependency (of course the dlls need to be installed separately, still... though there are ways to bundle the dlls with the python package if you are interested)

Since you already have a setup.py, pretty much the only thing you need to do is build the package and upload it using https://packaging.python.org/key_projects/#twine

python setup.py sdist
twine upload dist/*

Post Reply