summaryrefslogtreecommitdiff
path: root/setuptools/wheel.py
Commit message (Collapse)AuthorAgeFilesLines
* Rely on package names to namespace the package contents.Jason R. Coombs2018-12-241-6/+7
|
* Use Python 3 syntax for new-style clasessJason R. Coombs2018-06-031-1/+4
|
* Extract _convert_metadata. install_as_egg is almost comprehensible now.Jason R. Coombs2018-06-031-3/+8
|
* Extract method for _move_data_entriesJason R. Coombs2018-06-031-2/+6
|
* Extract method for fixing namespace packagesJason R. Coombs2018-06-031-2/+5
|
* Avoid hanging indentsJason R. Coombs2018-06-031-15/+26
|
* Remove redundant 'list'Jason R. Coombs2018-06-031-2/+2
|
* Use the new breathing room to consolidate linesJason R. Coombs2018-06-031-6/+3
|
* Extract method to save indentationJason R. Coombs2018-06-031-89/+92
|
* Feed the hobgoblins (delint).Jason R. Coombs2018-06-031-8/+17
|
* Use canonicalize_name to look for .dist-info in wheel filesArnon Yaari2018-05-161-2/+14
| | | | Fixes issue #1350
* Setuptools now vendors its own direct dependencies (packaging, six, ↵Jason R. Coombs2018-03-171-1/+1
| | | | pyparsing). Ref #1296.
* fix `data_files` handling when installing from wheelBenoit Pierre2017-11-301-4/+23
|
* fix namespace packages handling of wheelsBenoit Pierre2017-11-271-0/+18
|
* fix encoding handling of wheels metadataBenoit Pierre2017-11-261-1/+2
|
* easy_install: add support for installing from wheelsBenoit Pierre2017-11-261-0/+125
Note: wheels are installed as eggs, so each install is self-contained and multiple versions of the same package can be installed at the same time. Limitations: - headers are not supported - resulting egg metadata requirements have their markers stripped