gituser/production/: ez-setup-0.9 metadata and description

Homepage Simple index

ez_setup.py and distribute_setup.py

author Sridhar Ratnakumar
author_email github@srid.name
keywords ez_setup setuptools distribute workaround
license MIT
File Tox results History
ez_setup-0.9-py2-none-any.whl
Size
12 KB
Type
Python Wheel
Python
2
ez_setup-0.9.tar.gz
Size
6 KB
Type
Source

ez_setup

Problem: setup.py of several Python projects blindly import the setuptools bootstrap module ez_setup.py without realizing that it is usually not installed in the user’s machine. This causes much trouble.

Workaround: Include ez_setup.py (and distribute_setup.py) as a installable Python package so users can do easy_install ez_setup troublesome_package as a workaround.

Note: The ez_setup.py file being distributed is simply a copy of distribute_setup.py from the Distribute project (a setuptools fork); this is to remain compatible with several Python distributors opting to use Distribute instead of Setuptools – examples: Debian, ActiveState, and so on.

Credits

News

0.9

Release date: 11-Nov-2010

  • Initial release