patternpythonCritical
What is setup.py?
Viewed 0 times
whatsetupstackoverflow
Problem
What is
setup.py and how can it be configured or used?Solution
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.Code Snippets
$ pip install .Context
Stack Overflow Q#1471994, score: 1227
Revisions (0)
No revisions yet.