Are there conventions for storing multiple requirements.txt files in a Python code repository. For example, one file for simply running the program, another for day-to-day development, another for making a Windows build.
- Some repositories contain two files,
requirements.txtandrequirements_dev.txt, orrequirements.txtandrequirements_win.txt- this seems pretty ad-hoc. - I have others with a
requiressubfolder. But I'm not sure what the meaning ofrequires/requirements.txtis in this context -- running the application, or for development? - There is no mention of storing multiple requirements files in Structuring your project (Hitchhiker's guide to Python) or pip install (pip documentation).