Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Allow dict.update to do the iteration | Jason R. Coombs | 2015-08-30 | 1 | -3/+2 | |
| |/ | ||||||
| * | Remove unused _all_dirs. Prefer 'candidate' to 'suitable'. Update documentation. | Jason R. Coombs | 2015-08-07 | 1 | -15/+8 | |
| | | ||||||
| * | Big performance fix for find_packages by ignoring hidden dirs earlier | Luke Plant | 2015-07-20 | 1 | -2/+12 | |
| | | ||||||
* | | Merge with 10.2.1 | Jason R. Coombs | 2015-01-02 | 1 | -1/+0 | |
|\| | | | | | | | | | --HG-- branch : feature/issue-229 | |||||
| * | Remove unused import | Jason R. Coombs | 2014-12-29 | 1 | -1/+0 | |
| | | ||||||
* | | Trying a new technique. In this approach, setuptools is aware of its ↵ | Jason R. Coombs | 2014-11-16 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | dependencies and when imported makes sure the vendored versions are present on sys.path. --HG-- branch : feature/issue-229 | |||||
* | | Merge with master | Jason R. Coombs | 2014-11-16 | 1 | -5/+1 | |
|\| | | | | | | | | | --HG-- branch : feature/issue-229 | |||||
| * | Remove Python 2.5 compatibility for sys.dont_write_bytecode | Jason R. Coombs | 2014-10-25 | 1 | -4/+0 | |
| | | ||||||
| * | Fix #277, data files in symbol link directory are not included issue | Victor Lin | 2014-10-23 | 1 | -1/+1 | |
| | | | | | | | | | | --HG-- branch : bugfix-277 | |||||
* | | Use six for Python 2 compatibility | Jason R. Coombs | 2014-07-05 | 1 | -1/+2 | |
|/ | | | | | | --HG-- branch : feature/issue-229 extra : source : 7b1997ececc5772798ce33a0f8e77387cb55a977 | |||||
* | Restore traversal of symbolic links in find_packages. Fixes #195. | Jason R. Coombs | 2014-05-03 | 1 | -1/+1 | |
| | ||||||
* | Exclude children of excluded parents when doing package discovery. Fixes #184.3.4.4 | Jason R. Coombs | 2014-04-11 | 1 | -0/+17 | |
| | ||||||
* | Move the transform operation into the generator expression. | Jason R. Coombs | 2014-03-23 | 1 | -4/+2 | |
| | ||||||
* | Reindent docstring | Jason R. Coombs | 2014-03-22 | 1 | -13/+13 | |
| | ||||||
* | Created PEP420PackageFinder, whose .find method can be used to find any ↵ | Jason R. Coombs | 2014-03-22 | 1 | -4/+6 | |
| | | | | suitable directory. | |||||
* | Pulled find_package functionality into a PackageFinder class | Jason R. Coombs | 2014-03-22 | 1 | -55/+64 | |
| | ||||||
* | Extracted _all_dirs and rewrote _find_packages_iter as a proper iterator. | Jason R. Coombs | 2014-03-22 | 1 | -25/+18 | |
| | ||||||
* | Extract _find_packages_iter | Jason R. Coombs | 2014-03-22 | 1 | -6/+10 | |
| | ||||||
* | Extract _looks_like_package | Jason R. Coombs | 2014-03-22 | 1 | -9/+11 | |
| | ||||||
* | Extract path assembly | Jason R. Coombs | 2014-03-22 | 1 | -4/+5 | |
| | ||||||
* | Extracted directory detection and presence of '.' in name. | Jason R. Coombs | 2014-03-22 | 1 | -7/+15 | |
| | ||||||
* | Extract out filtering by filename | Jason R. Coombs | 2014-03-21 | 1 | -7/+13 | |
| | ||||||
* | Perform the inclusion filter after traversal for congruency with exclude | Jason R. Coombs | 2014-03-21 | 1 | -3/+4 | |
| | ||||||
* | Use a default that communicates the purpose and also degenerates nicely. | Jason R. Coombs | 2014-03-21 | 1 | -3/+2 | |
| | ||||||
* | Add support for PEP 420 namespace packages to find_packages() | Wyatt Lee Baldwin | 2014-02-12 | 1 | -1/+4 | |
| | | | | | | | | | | | 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 | |||||
* | Add include parameter to find_packages. | Wyatt Lee Baldwin | 2014-02-12 | 1 | -3/+15 | |
| | | | | | --HG-- extra : rebase_source : 1fec39a038ac2c460e62ef2ee2eee5a0b66a676d | |||||
* | Move import to top | Jason R. Coombs | 2014-03-16 | 1 | -1/+1 | |
| | | | | | --HG-- extra : rebase_source : 3b48a37ada247203bfebf87cdbb473b72e6e208b | |||||
* | Exclude __pycache__ in find_packages. | Wyatt Lee Baldwin | 2014-02-12 | 1 | -1/+1 | |
| | | | | | --HG-- extra : rebase_source : fecc027e4355f36d779967683a213fb2d867d21a | |||||
* | Setup find_packages excludes early for clarity. | Wyatt Lee Baldwin | 2014-02-12 | 1 | -1/+2 | |
| | | | | | --HG-- extra : rebase_source : 7c05859ef526ed8a2d9af738e54dc9dca510245e | |||||
* | Backout b17e9a0ea116 and 50725de303ef, restoring Feature model. Fixes #161 ↵ | Jason R. Coombs | 2014-03-08 | 1 | -2/+2 | |
| | | | | | | | and re-opens #65. --HG-- extra : amend_source : f14bc0bf6c9f04e16d30ce0abf7bcb944f41ebea | |||||
* | Removed Features functionality. Fixes #65. | Jason R. Coombs | 2014-02-09 | 1 | -2/+2 | |
| | ||||||
* | More simply resolve _dont_write_bytecode. | Jason R. Coombs | 2013-09-02 | 1 | -7/+2 | |
| | ||||||
* | Refactor _dont_write_bytecode detection | Jason R. Coombs | 2013-09-02 | 1 | -5/+7 | |
| | ||||||
* | Move imports to leader | Jason R. Coombs | 2013-09-02 | 1 | -4/+3 | |
| | ||||||
* | Refactor for clarity | Jason R. Coombs | 2013-09-02 | 1 | -4/+8 | |
| | ||||||
* | Reorganize imports | Jason R. Coombs | 2013-09-02 | 1 | -6/+10 | |
| | ||||||
* | Remove unused import | Jason R. Coombs | 2013-09-02 | 1 | -1/+1 | |
| | ||||||
* | Remove unused import | Jason R. Coombs | 2013-09-02 | 1 | -1/+1 | |
| | ||||||
* | Move version into its own file so that setuptools machinery isn't necessary ↵ | Jason R. Coombs | 2013-08-05 | 1 | -1/+1 | |
| | | | | | | | to elicit the version. --HG-- extra : rebase_source : 1611131e6765a30fd0fe94d8455418ccd3ae46ae | |||||
* | Bumped to 0.9.9 in preparation for next release. | Jason R. Coombs | 2013-07-25 | 1 | -1/+1 | |
| | ||||||
* | Bumped to 0.9.8 in preparation for next release. | Jason R. Coombs | 2013-07-22 | 1 | -1/+1 | |
| | ||||||
* | Bumped to 0.9.7 in preparation for next release. | Jason R. Coombs | 2013-07-17 | 1 | -1/+1 | |
| | ||||||
* | Bumped to 0.9.6 in preparation for next release. | Jason R. Coombs | 2013-07-15 | 1 | -1/+1 | |
| | ||||||
* | Bumped to 0.9.5 in preparation for next release. | Jason R. Coombs | 2013-07-15 | 1 | -1/+1 | |
| | ||||||
* | Bumped to 0.9.4 in preparation for next release. | Jason R. Coombs | 2013-07-15 | 1 | -1/+1 | |
| | ||||||
* | Bumped to 0.9.3 in preparation for next release. | Jason R. Coombs | 2013-07-15 | 1 | -1/+1 | |
| | ||||||
* | Bumped to 0.9.2 in preparation for next release. | Jason R. Coombs | 2013-07-13 | 1 | -1/+1 | |
| | ||||||
* | Bumped to 0.9.1 in preparation for next release. | Jason R. Coombs | 2013-07-13 | 1 | -1/+1 | |
| | ||||||
* | Bumped to 0.10 in preparation for next release. | Jason R. Coombs | 2013-07-13 | 1 | -1/+1 | |
| | ||||||
* | Bumped to 0.9 in preparation for next release. | Jason R. Coombs | 2013-07-05 | 1 | -1/+1 | |
| |