summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Extracted directory detection and presence of '.' in name.Jason R. Coombs2014-03-221-7/+15
|
* Extract out filtering by filenameJason R. Coombs2014-03-211-7/+13
|
* Perform the inclusion filter after traversal for congruency with excludeJason R. Coombs2014-03-211-3/+4
|
* Use a default that communicates the purpose and also degenerates nicely.Jason R. Coombs2014-03-211-3/+2
|
* Fix buids -> buildsSteven Maude2014-03-171-1/+1
|
* Use a context manager instead of calling _test.run in multiple places. ↵Jason R. Coombs2014-03-161-4/+10
| | | | Alleviates need to warn about Exceptions
* Use binary mode to save/restore entry_points - no need to mutate newlinesJason R. Coombs2014-03-161-2/+2
|
* Sort entry points when writing so they render consistentlyJason R. Coombs2014-03-162-64/+64
|
* Added tag 4.0b1 for changeset 78c8cfbe3e10Jason R. Coombs2014-03-161-0/+1
|
* Update setuptools setup.py to work with setuptools 4.04.0b1Jason R. Coombs2014-03-161-1/+4
|
* Merge original PR 37 with latest headJason R. Coombs2014-03-160-0/+0
|\
| * Add support for PEP 420 namespace packages to find_packages()Wyatt Lee Baldwin2014-02-123-6/+138
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On Python 3.3+, `find_packages()` now considers any subdirectory of the start directory that's not a regular package (i.e., that doesn't have an `__init__.py`) to be a namespace package. Because this will often include non-package directories, a new `include` argument has been added to `find_packages()`. `include` can make it easier to narrow which directories are considered packages instead of having to specify numerous excludes. In particular, it's an easy way to keep top-level, non-source directories from being considered packages. The other way this supports PEP 420 is by making sure `__pycache__` directories are never added to the list of packages. Refs issue #97
* | Check packages without deference to orderJason R. Coombs2014-03-161-5/+8
| |
* | Update documentation to reflect PEP420 supportJason R. Coombs2014-03-161-3/+3
| |
* | Use py26compat for skipIfJason R. Coombs2014-03-161-6/+7
| |
* | Bumped to 4.0 in preparation for next release.Jason R. Coombs2014-03-162-2/+2
| |
* | Add support for PEP 420 namespace packages to find_packages()Wyatt Lee Baldwin2014-02-125-67/+117
| | | | | | | | | | | | | | | | | | | | | | On Python 3.3+, `find_packages()` now considers any subdirectory of the start directory that's not a regular package (i.e., that doesn't have an `__init__.py`) to be a namespace package. The other way this supports PEP 420 is by making sure `__pycache__` directories are never added to the list of packages. Fixes issue #97
* | Bumped to 3.4 in preparation for next release.Jason R. Coombs2014-03-164-47/+47
| |
* | Added tag 3.3 for changeset b306e681a945Jason R. Coombs2014-03-161-0/+1
| |
* | Update documentation to reflect new include parameter.3.3Jason R. Coombs2014-03-161-5/+8
| |
* | Update test for Python 2.6 compatibilityJason R. Coombs2014-03-161-1/+1
| |
* | Add test for find_packages(include=)Jason R. Coombs2014-03-161-0/+10
| | | | | | | | | | --HG-- extra : rebase_source : bee4238f4cd00fa8bd3104017f4caf234dcf0729
* | Add include parameter to find_packages.Wyatt Lee Baldwin2014-02-122-3/+21
| | | | | | | | | | --HG-- extra : rebase_source : 1fec39a038ac2c460e62ef2ee2eee5a0b66a676d
* | Move import to topJason R. Coombs2014-03-161-1/+1
| | | | | | | | | | --HG-- extra : rebase_source : 3b48a37ada247203bfebf87cdbb473b72e6e208b
* | Exclude __pycache__ in find_packages.Wyatt Lee Baldwin2014-02-121-1/+1
| | | | | | | | | | --HG-- extra : rebase_source : fecc027e4355f36d779967683a213fb2d867d21a
* | Setup find_packages excludes early for clarity.Wyatt Lee Baldwin2014-02-121-1/+2
| | | | | | | | | | --HG-- extra : rebase_source : 7c05859ef526ed8a2d9af738e54dc9dca510245e
* | Add unit tests for find_packagesWyatt Lee Baldwin2014-02-121-0/+72
| | | | | | | | | | --HG-- extra : rebase_source : 75f5ce4d2fb9d0ccd7168739c23d9ea1eeeb9112
* | Bumped to 3.3 in preparation for next release.Jason R. Coombs2014-03-145-51/+51
| |
* | Added tag 3.2 for changeset 07c459bea1c5Jason R. Coombs2014-03-141-0/+1
| |
* | Fix failing test on Windows3.2Jason R. Coombs2014-03-141-2/+3
| |
* | Bump wincertstore to 0.2. Fixes #164.Jason R. Coombs2014-03-142-2/+3
| |
* | Python 2.6 or later is requiredJason R. Coombs2014-03-141-1/+1
| |
* | MergeJason R. Coombs2014-03-134-4/+5
|\ \
| * | Issue #162: Update dependency on certifi to 1.0.1.Arfrever Frehtes Taifersar Arahesis2014-03-114-4/+5
| | |
* | | Remove special handling of 'no_compile' option with comment about making ↵Jason R. Coombs2014-03-131-1/+0
| | | | | | | | | | | | DISTUTILS_DEBUG work right. While testing on Python 2.6 and later, I was unable to evoke any abberant or distinct behavior by removing the value (with DISTUTILS_DEBUG enabled and using variations of --compile and --no-compile). Therefore, I believe that whatever was the motivation for adding the attribute (in 2c91c12dc9b1), its purpose has passed.
* | | Reindent and remove excess whitespaceJason R. Coombs2014-03-131-10/+3
|/ /
* | Use functools.partial and re.sub to construct the substitution function.Jason R. Coombs2014-03-101-7/+6
| |
* | self.language could be None (and is None by default)Jason R. Coombs2014-03-101-1/+2
| |
* | Use a single method to handle both languages.Jason R. Coombs2014-03-102-19/+21
| |
* | Merged in lsinger/setuptools (pull request #39)Jason R. Coombs2014-03-101-1/+12
|\ \ | | | | | | | | | Map .pyx sources to .c or .cpp depending on language
| * | Map .pyx sources to .c or .cpp depending on languagelsinger2014-03-011-1/+12
| | |
* | | Bumped to 3.2 in preparation for next release.Jason R. Coombs2014-03-083-38/+38
| | |
* | | Added tag 3.1 for changeset 47224d55ddc6Jason R. Coombs2014-03-081-0/+1
| | |
* | | Bumped to 3.1 in preparation for next release.3.1Jason R. Coombs2014-03-082-2/+2
| | |
* | | Update changelogJason R. Coombs2014-03-081-0/+7
| | |
* | | Backout b17e9a0ea116 and 50725de303ef, restoring Feature model. Fixes #161 ↵Jason R. Coombs2014-03-083-5/+342
| | | | | | | | | | | | | | | | | | | | | and re-opens #65. --HG-- extra : amend_source : f14bc0bf6c9f04e16d30ce0abf7bcb944f41ebea
* | | Forget --userJason R. Coombs2014-03-061-1/+1
| | |
* | | Exercise ez_setup.py now using the new version command line parameter.Jason R. Coombs2014-03-061-1/+1
| | |
* | | Allow version to be passed to ez_setup.py. The parameter to main wasn't ↵Jason R. Coombs2014-03-061-3/+10
| | | | | | | | | | | | | | | | | | | | | being used, so removed it. --HG-- extra : amend_source : 2a653d81b4afea7d91c9e58a537317dd24673ee0
* | | The DEFAULT_VERSION won't be present. Try an earlier vesion.Jason R. Coombs2014-03-061-1/+1
| | |