I wish to start using poetry on some projects at work, where I am stuck behind corporate filters that sometimes interfere with certs.
If I use pip, I can ignore SSL errors by doing something like the below:
$ pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org <package_name>
Does something like this exist for poetry, be it a command line argument or configuration values to be put into the lock file?