production and development requirements are at the moment separate files.
This was made to accomplish a common pattern in my personal projects which became obsolete after introducing pyproject.toml as python project management file.
[x] Remove requirements.dev.txt and reference of it in makefile
[x] Change commands in makefile to send development enviroment in requirements.txt
[x] Use pip install . to install production dependencies
production and development requirements are at the moment separate files. This was made to accomplish a common pattern in my personal projects which became obsolete after introducing
pyproject.toml
as python project management file.requirements.txt
pip install .
to install production dependencies