I am trying to figure out how to include a modified package into a Django 2.2 project.
The package has been modified. A few skins have been added to the editor. That is, it is no longer the same package that is installed when one does pip install <package>
. My understanding is that it now needs to be added to source control and probably added to the project directory, instead of being located within a virtual environment's directory.
The question is what is the way go about this situation most efficiently. Should I add the package to the project's directory or is there a way to somehow manage this through pip
and requirements.txt
?