I have created a pip package in a private GitHub repository. This package is going to be used in many projects in our organization. I succeded installing the package by creating a personal access token and using this:
pip install git+https://[mytoken]@github/myorg/azure-utils.git@main#egg=azure-utils
As this will be included in multiple projects by an organization it's not suited to be dependant on a personal access token. Are there other ways to do this or generate a company wide token not expiring?