I'm trying to install this repository using poetry package manager. Here's how it's done using pip:
git clone --recursive https://github.com/parlance/ctcdecode.git
cd ctcdecode && pip install .
But if I try to run
poetry add ctcdecode
It fails with big traceback (over 200 lines I think). So I installed it with
poetry run git clone --recursive https://github.com/parlance/ctcdecode.git
poetry run pip install ./ctcdecode
But this way is not suitable for sharing with other devs. Can I do it with pyproject.toml somehow?