Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

What is setup.py in python?

Can anyone please explain what setup.py is and how it can be configured or used?
by

2 Answers

kshitijrana14
setup.py is a python file, the presence of which is an indication that the module/package you are about to install has likely been packaged and distributed with Distutils, which is the standard for distributing Python Modules.
This allows you to easily install Python packages. Often it's enough to write:
$ pip install
.
pip will use setup.py to install your module. Avoid calling setup.py directly.
MounikaDasa
setup.py is a python file, the presence of which is an indication that the module/package you are about to install has likely been packaged and distributed with Distutils, which is the standard for distributing Python Modules.

This allows you to easily install Python packages. Often it's enough to write:

$ pip install .
pip will use setup.py to install your module. Avoid calling setup.py directly.

Login / Signup to Answer the Question.