I am following the Deploy to Production tutorial from Flask. I am required to run python setup.py bdist_wheel
to build a wheel build distribution file. But that command gives this error:
python: can't open file 'setup.py': [Errno 2] No such file or directory
After searching, I found out that the file is supposed to be at the root of the library I am using. I couldn't find it at the root of the wheel or flask libraries.
Where is the setup.py file that the tutorial is telling me to use?