what is the purpose of this setup
Answers
Answer:Hey mate answer of your question is given below by me.. Explanation:
Back to Top. Also referred to as "sugar syrup," simple syrup is a liquefied form of sugar that is commonly used to sweeten cocktails, iced tea, iced coffee, lemonade, and other cold drinks. Because it is a liquid sweetener, it is much easier to blend into cold beverages than regular sugar.
I hope it can help you..
Answer:
setup.py file informs you about the module or package-dependencies you are about to install has been packaged and distributed with Distutils, which is the standard for distributing Python Modules.
This allows you to easily install Python package. The other way of installing packages/modules is by using pip.
Yes, you can install requirements.txt with all your modules by doing:
pip install -r requirements.txt
Hope that helps
Note: You can also install and use your requirements.txt within a virtualenv if you want to run your python application separate from your main application, many tutorials online on how to do that as well.