aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/extern/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Move six to pkg_resources for use there.Jason R. Coombs2016-01-041-1/+1
| | | | | --HG-- branch : feature/issue-229
* Combine separate VendorImporters into a single one in pkg_resources.externJason R. Coombs2016-01-021-44/+1
| | | | | --HG-- branch : feature/issue-229
* Pop the module off the stack, preventing the 'Version' class from having a ↵Jason R. Coombs2016-01-021-2/+1
| | | | | | | different manifestation in packaging than in pkg_resources. --HG-- branch : feature/issue-229
* Make VendorImporter more genericJason R. Coombs2016-01-021-13/+20
| | | | | --HG-- branch : feature/issue-229
* Create a PEP 302 importer for managing conditional import of vendored ↵Jason R. Coombs2016-01-021-0/+42
| | | | | | | packages from the 'extern' namespace. This technique avoids the use of 'imp' and works even when setuptools is installed as a zipped egg. Ref #229. --HG-- branch : feature/issue-229
* Modeling after Astropy's technique for bundling libraries, the imports are ↵Jason R. Coombs2015-12-311-0/+0
now much cleaner. Thanks @embray. Ref #229. --HG-- branch : feature/issue-229