Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix quantity of blank lines after code object. | stepshal | 2016-07-13 | 1 | -0/+1 |
| | |||||
* | Fix package list inconsistency caused by namespace package on Python 3.5 | sunpoet | 2015-11-20 | 1 | -0/+2 |
| | | | | | | namespace package will be skipped during installation. Since Python 3.5, .pyo files are removed and new .opt-1.pyc (and .opt-2.pyc) files are introduced [1]. However setuptools does not understand that new naming therefore the corresponding foo.opt-1.pyc is still added into package list (via --record). The inconsistency leads to a packaging error. [1] https://www.python.org/dev/peps/pep-0488/ | ||||
* | Use rpartition here, essential to the algorithm. Fixes #259. | Jason R. Coombs | 2014-09-27 | 1 | -1/+1 |
| | | | | | --HG-- extra : amend_source : d7b3c001b4db616a67793dcc57d5c13e3828ad3a | ||||
* | Move inline function into an instance method and rename for clarity. | Jason R. Coombs | 2014-09-26 | 1 | -11/+11 |
| | |||||
* | Return the exclusions directly | Jason R. Coombs | 2014-09-26 | 1 | -6/+8 |
| | |||||
* | Incorporate the exclusion path in the _exclude function. | Jason R. Coombs | 2014-09-26 | 1 | -2/+6 |
| | |||||
* | Reorganize imports | Jason R. Coombs | 2014-09-26 | 1 | -2/+3 |
| | |||||
* | Use itertools.product for a cross-product of two iterables | Jason R. Coombs | 2014-09-26 | 1 | -3/+3 |
| | |||||
* | Reindent | Jason R. Coombs | 2014-09-26 | 1 | -2/+2 |
| | |||||
* | Rewrite package traversal as a generator expression | Jason R. Coombs | 2014-09-26 | 1 | -2/+6 |
| | |||||
* | Extract path calculation for paths | Jason R. Coombs | 2014-09-26 | 1 | -3/+2 |
| | |||||
* | Extract method for computing parent packages of a package | Jason R. Coombs | 2014-09-26 | 1 | -4/+13 |
| | |||||
* | Extract method for calculating namespace packages for ↵ | Jason R. Coombs | 2014-09-26 | 1 | -11/+23 |
| | | | | single_version_externally_managed | ||||
* | Add docstring for get_exclusions. Just return the set as it is a sized ↵ | Jason R. Coombs | 2014-09-26 | 1 | -1/+5 |
| | | | | container. | ||||
* | Construct exclusions as a set | Jason R. Coombs | 2014-09-26 | 1 | -3/+3 |
| | |||||
* | Add comment | Jason R. Coombs | 2014-09-26 | 1 | -0/+2 |
| | |||||
* | Extract calculation of base path | Jason R. Coombs | 2014-09-26 | 1 | -2/+3 |
| | |||||
* | Generate the filenames more directly. | Jason R. Coombs | 2014-09-26 | 1 | -15/+11 |
| | |||||
* | Extract method for generating exclude names | Jason R. Coombs | 2014-09-26 | 1 | -9/+17 |
| | |||||
* | Normalize syntax | Jason R. Coombs | 2014-09-26 | 1 | -2/+2 |
| | |||||
* | Commit the fix we did when testing python3 | Melvyn Sopacua | 2014-07-05 | 1 | -2/+2 |
| | | | | | | I shall `hg status` before submitting PRs. I shall `hg status` before submitting PRs. I shall `hg status` before submitting PRs. | ||||
* | Fix exclude list on python 3.2+ | Melvyn Sopacua | 2014-07-05 | 1 | -3/+14 |
| | | | | | | | | imp.get_tag() is only available on 3.2+. Since 2<x<3.2 are EOL we shall not worry. We could implement a local get_tag(), but the point is moot: this compilation tactic with __pycache__ subdirs and versioned import files is new to python 3.x, so hasattr() is sufficient. | ||||
* | Fixed PEP 8 compliancy of the setuptools.command package | Alex Grönholm | 2014-06-18 | 1 | -5/+7 |
| | |||||
* | Correct indentation and clarify meaning by using namespacing | Jason R. Coombs | 2014-04-30 | 1 | -4/+4 |
| | | | | | --HG-- extra : amend_source : 20ab7547c8478eb084767fe701e627bdd462ba16 | ||||
* | Reindent and remove excess whitespace | Jason R. Coombs | 2014-03-13 | 1 | -10/+3 |
| | |||||
* | Do not override _bytecode_filenames | William Grzybowski | 2013-12-16 | 1 | -12/+0 |
| | | | | | | | | The overridden version cannot handle Python 3.x while distutils verion can handle it just fine. --HG-- extra : rebase_source : 86fa56285849e97780e91eff405881bfb72184d5 | ||||
* | Support namespace packages in conjunction with system packagers, by omitting | PJ Eby | 2006-03-17 | 1 | -2/+59 |
| | | | | | | | | | the installation of any ``__init__.py`` files for namespace packages, and adding a special ``.pth`` file to create a working package in ``sys.modules``. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4043119 | ||||
* | Ensure installed stubs get compiled, even if there are no "pure" modules | PJ Eby | 2006-01-13 | 1 | -0/+9 |
| | | | | | | | | present. Also, don't bother compiling the stub prior to installation. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4042037 | ||||
* | remove trailing blank line | Fred Drake | 2004-04-05 | 1 | -1/+0 |
| | | | | | | --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4040894 | ||||
* | Initial checkin of setuptools 0.0.1. | PJ Eby | 2004-03-19 | 1 | -0/+17 |
--HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4040869 |