Python 3 - SetupTools
Table of Contents
About
setuptools is an framework enhancement over distutils that allow to more easily build and distribute Python distributions.
Articles Related
Management
Installation
setuptools are included with Python >=3.4 and >=2.7.9.
- Download the ez_setup.py file from https://pypi.python.org/pypi/setuptools/
python ez_setup.py
Downloading https://pypi.io/packages/source/s/setuptools/setuptools-23.1.0.zip
Extracting in C:\Users\gerard\AppData\Local\Temp\tmp9i_c5_sc
Now working in C:\Users\gerard\AppData\Local\Temp\tmp9i_c5_sc\setuptools-23.1.0
Installing Setuptools
..............
Installed c:\python\python35-32\lib\site-packages\setuptools-23.1.0-py3.5.egg
Processing dependencies for setuptools==23.1.0
Finished processing dependencies for setuptools==23.1.0
Update
pip install -U setuptools
Project Structure
See Python - Project