aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools
Commit message (Collapse)AuthorAgeFilesLines
* Bumped to 3.4.1 in preparation for next release.3.4.1Jason R. Coombs2014-03-301-1/+1
|
* Skip this test because it now fails under Python 3.3 and earlier apparently ↵Jason R. Coombs2014-03-301-0/+4
| | | | due to a bug in the inspect module. Since the test passes under Python 3.4 and later, that should still serve as a suitable regression test.
* Extract the resolution of loader/runner classes. Allows None value to ↵Jason R. Coombs2014-03-301-6/+13
| | | | pass-through to unittest.main. Fixes #180.
* Reformat to add the conventional whitespace and shorter lines.Jason R. Coombs2014-03-301-11/+13
|
* Use file context for write_stubJason R. Coombs2014-03-301-3/+2
|
* Create stub template from a multiline string.Jason R. Coombs2014-03-301-12/+11
|
* Update bdist_egg for styleJason R. Coombs2014-03-301-99/+34
|
* Bumped to 3.5 in preparation for next release.Jason R. Coombs2014-03-301-1/+1
|
* Allow install to proceed with an egg install on IronPython and any other ↵3.4Jason R. Coombs2014-03-301-1/+11
| | | | environment that has no stack support. Fixes #177.
* variable name is superfluous nowJason R. Coombs2014-03-301-2/+1
|
* Simplify comment not to repeat the obvious implication of the 'if' test.Jason R. Coombs2014-03-301-3/+1
| | | | | --HG-- extra : amend_source : c92063405d99e7fdb7fe0a6312fa8438c3727c2f
* Update docstringJason R. Coombs2014-03-301-5/+4
|
* Use inspect module instead of _getframeJason R. Coombs2014-03-301-7/+8
|
* Extract a method to capture the intention of caller detection.Jason R. Coombs2014-03-301-13/+21
|
* Replace outdated deprecating comments with a proper doc string.Jason R. Coombs2014-03-301-4/+9
|
* The no_egg option is no longer present.Jason R. Coombs2014-03-301-4/+0
|
* Adjust to match modern style conventions.Jason R. Coombs2014-03-301-5/+9
|
* Remove legacy compatibility in bdist_rpmJason R. Coombs2014-03-301-15/+1
| | | | | --HG-- extra : amend_source : 829ebde0696d12adfb54aca74ea6b1b510177ff4
* Remove excess whitespace; Normalize imports.Jason R. Coombs2014-03-301-34/+3
| | | | | --HG-- extra : amend_source : 62f689b409b4645eda5f81b2604c50a84713ee52
* Apply patch based on patch in 2008 by Klaus Zimmerman. Fixes #176.Jason R. Coombs2014-03-281-2/+8
|
* Move the transform operation into the generator expression.Jason R. Coombs2014-03-231-4/+2
|
* Add test for excludeJason R. Coombs2014-03-221-0/+5
|
* Bumped to 3.4 in preparation for next release.Jason R. Coombs2014-03-221-1/+1
|
* Reindent docstringJason R. Coombs2014-03-221-13/+13
|
* Created PEP420PackageFinder, whose .find method can be used to find any ↵Jason R. Coombs2014-03-222-20/+13
| | | | suitable directory.
* Pulled find_package functionality into a PackageFinder classJason R. Coombs2014-03-221-55/+64
|
* Extracted _all_dirs and rewrote _find_packages_iter as a proper iterator.Jason R. Coombs2014-03-221-25/+18
|
* Extract _find_packages_iterJason R. Coombs2014-03-221-6/+10
|
* Extract _looks_like_packageJason R. Coombs2014-03-221-9/+11
|
* Extract path assemblyJason R. Coombs2014-03-221-4/+5
|
* 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
|
* Sort entry points when writing so they render consistentlyJason R. Coombs2014-03-161-2/+2
|
* Check packages without deference to orderJason R. Coombs2014-03-161-5/+8
|
* Use py26compat for skipIfJason R. Coombs2014-03-161-6/+7
|
* Bumped to 4.0 in preparation for next release.Jason R. Coombs2014-03-161-1/+1
|
* Add support for PEP 420 namespace packages to find_packages()Wyatt Lee Baldwin2014-02-122-1/+42
| | | | | | | | | | | 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-161-1/+1
|
* 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-121-3/+15
| | | | | --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-141-1/+1
|
* Fix failing test on Windows3.2Jason R. Coombs2014-03-141-2/+3
|
* 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.