Closed hrshdhgd closed 2 years ago
From a couple of stack overflow posts and other github issues, it looks like PyPi does not support a package having non-PyPi dependencies. My suggestion would be to just put the installation of en_ner_craft_md
in an installation instructions section of your readme. Another option would be to try to import it wherever you need it in your package code, and if its not installed, throw an exception that tells the user how to install it.
We have a an NER project who has a dependency on one of your models namely
en_ner_craft_md
and potentially others in the future.I'm trying to release our project to PyPi and get the error:
We're using
poetry
as our package management tool and the dependency is declared as follows inpyproject.toml
:Is there any recommendation from your team for how should we address this?
Thanks in advance!