tflite_runtime is not hosted in pypi, but can be installed as:
pip3 install --extra-index-url https://google-coral.github.io/py-repo/ tflite_runtime
How can I package my project which has this dependency?
I have seen this setuptools docs and some threads 1, 2 but no luck so far.
setup.cfg
[options]
...
dependency_links = https://google-coral.github.io/py-repo/tflite-runtime/
install_requires =
tflite_runtime==2.5.0
Bonus: locally I use mac. My deployment will be on linux. Is there a way to install the right whl based on OS?