I want to install a package from my private GitHub repository. Using GitHub access token, I can specify it like this:
[tool.poetry.dependencies]
python = "^3.8"
<package> = {git = "https://<token>@github.com/<user>/<repo>", rev = "0.1.3"}
And it works. But, I don't want to specify my access token in pyproject.toml
directly. Is there some other way I can specify it?