I am researching Pipenv's Pipfile and its sections. More specifically, the requires section. Sadly I cannot find any information about it outside the specification of the Python version. Is there someone who can send me some documentation about it or explain to me if this is the only use of that section? I highly doubt that it is a single purpose.
As far as I know:
- The source section is for the location you want to install packages from.
- Packages section is for packages used on dev and prod.
- Dec-packages is for packages that are strictly used on dev.
- Scripts section is for defining aliases that the developer can use in the virtual environment.
- Requires is for the python version and ?
- There are no other sections.
I really appreciate any help you can provide.