I have big problems problems when i are trying to add my private package e.g.
poetry add my-package
My source inside my pyproject.toml file is like this
[[tool.poetry.source]]
name = "aws"
url = "{repo-url}"
priority = "primary"
The problem I get every time is 401 Client Error: Unauthorized for URL:, and I can’t fix it unless I use basic authentication in the URL like this.
url = "https://aws:[email protected]"
I don’t want to commit my token directly to my project for safety, and I have not tried the CLI whiteout with any luck.
How did it work, did i use it in a wrong way?