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.txt
andrequirements_dev.txt
, orrequirements.txt
andrequirements_win.txt
- this seems pretty ad-hoc. - I have others with a
requires
subfolder. But I'm not sure what the meaning ofrequires/requirements.txt
is 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).