One of my required packages is not in pip, but is a github repository.
If I install in locally I would do,
pip install git+https://github.com/perceptualrobots/DRL-for-microgrid-energy-management.git
I tried to include it in settings.ini like this,
requirements = git+https://github.com/perceptualrobots/DRL-for-microgrid-energy-management.git deprecated pygame plotly numpy==1.22.2
However, when I push my project to github I get an error,
'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Parse error at
ââ+https:/ââ: Expected stringEnd
Is there a way of including such packages?