# ez_setup **Repository Path**: ekber/ez_setup ## Basic Information - **Project Name**: ez_setup - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-01-01 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 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 an 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 ------- - `Distribute`_ - `modern-package-template`_ .. _Distribute: http://code.activestate.com/pypm/distribute/ .. _`modern-package-template`: http://code.activestate.com/pypm/modern-package-template/