summaryrefslogtreecommitdiff
path: root/setuptools/command
Commit message (Expand)AuthorAgeFilesLines
* Use underlying invocation of ._load directlyJason R. Coombs2014-12-311-1/+1
* Remove superfluous parenthesesJason R. Coombs2014-12-311-1/+1
* Restore _default_revctrl implementation (stubbed). Fixes #320.Jason R. Coombs2014-12-311-0/+1
* Merge with remove-svnJason R. Coombs2014-12-302-58/+7
|\
| * Merge with masterJason R. Coombs2014-12-281-0/+6
| |\
| * | Removed svn support from setuptools. Ref #313.Jason R. Coombs2014-12-242-58/+7
* | | Extract variable for clarity of readingJason R. Coombs2014-12-301-4/+8
* | | Extract _patch_usage and re-implement as a context manager.Jason R. Coombs2014-12-291-23/+27
* | | Reindent using textwrapJason R. Coombs2014-12-291-4/+4
| |/ |/|
* | Merge pull request #106 from Richard Ipsum.Jason R. Coombs2014-12-261-0/+6
|\ \ | |/ |/|
| * Make egg_info command write out setup requirementsRichard Ipsum2014-11-031-0/+6
* | Setuptools now uses the 'packaging' package from pkg_resources, unifying the ...Jason R. Coombs2014-12-241-7/+1
* | Move vendored packaging module into pkg_resources._vendor, restoring independ...Jason R. Coombs2014-12-241-2/+2
* | Force list type for easy concatenation.Jason R. Coombs2014-12-231-1/+1
* | Add comments for clarity.Jason R. Coombs2014-12-231-0/+2
* | Extract logic for getting the extensions for outputs.Jason R. Coombs2014-12-231-4/+7
* | Collapse two generator expressions.Jason R. Coombs2014-12-231-2/+2
* | Use itertools.product to pair each base with each extension.Jason R. Coombs2014-12-231-5/+7
* | Extract method for clarity.Jason R. Coombs2014-12-231-1/+4
* | Rewrite function to use extend and a generator expression.Jason R. Coombs2014-12-231-5/+4
* | ReindentJason R. Coombs2014-12-231-5/+5
* | Extract filtering of extensions that need stubs.Jason R. Coombs2014-12-231-2/+2
* | Rewrite short-circuit for/if/else loop as any on generator expression.Jason R. Coombs2014-12-231-4/+1
* | Extract variable for simplicity of indentation.Jason R. Coombs2014-12-231-3/+2
* | Extract variables for clarity and simpler indentation.Jason R. Coombs2014-12-231-4/+4
* | Define if_dl using simple lambda.Jason R. Coombs2014-12-231-4/+1
* | Use hasattr per recommendation in docs for dl.Jason R. Coombs2014-12-231-4/+2
* | Silence PEP440Warning by default unless invoking easy_installDonald Stufft2014-12-181-0/+5
* | Move invocation bypass into function itself, pertinent to the docstring.Jason R. Coombs2014-12-131-2/+5
* | Extract variables to capture substeps.Jason R. Coombs2014-12-131-3/+3
* | Remove superfluous list construction.Jason R. Coombs2014-12-131-2/+2
* | Edit docstring for imperative formJason R. Coombs2014-12-131-5/+6
* | egg_info: Split manifest_maker._add_egg_info into its own methodW. Trevor King2014-10-161-3/+20
* | egg_info: Search egg-base for files to add to the manifest"W. Trevor King"2014-10-161-0/+5
* | Merge branch 'master' into use-packagingDonald Stufft2014-11-192-3/+3
|\ \ | |/
| * Remove Python 2.5 compatibility for sys.dont_write_bytecodeJason R. Coombs2014-10-251-2/+2
| * Backout 5692cd26a08e; Ref #262.6.0.2b1Jason R. Coombs2014-09-291-1/+1
* | Prefer packaging library if available.Jason R. Coombs2014-09-271-2/+9
* | Fix indentJason R. Coombs2014-09-271-2/+1
* | Merge github pull request #13 (dstufft/setuptools:use-packaging).Jason R. Coombs2014-09-271-1/+7
|\ \ | |/ |/|
| * Implement PEP 440 by using the packaging libraryDonald Stufft2014-09-251-1/+7
* | Use rpartition here, essential to the algorithm. Fixes #259.Jason R. Coombs2014-09-271-1/+1
* | Fix issue #118: Prevent the egg-info directory from being redundantly include...Jesse Weinstein2014-08-281-1/+1
* | Merge Pull Request #78 correcting regression in Pull Request #76.Jason R. Coombs2014-09-261-1/+1
|\ \
| * | [Fix/Typo] Fix missing parenthesis in egg_info.pyHugues Lerebours2014-08-181-1/+1
* | | Move inline function into an instance method and rename for clarity.Jason R. Coombs2014-09-261-11/+11
* | | Return the exclusions directlyJason R. Coombs2014-09-261-6/+8
* | | Incorporate the exclusion path in the _exclude function.Jason R. Coombs2014-09-261-2/+6
* | | Reorganize importsJason R. Coombs2014-09-261-2/+3
* | | Use itertools.product for a cross-product of two iterablesJason R. Coombs2014-09-261-3/+3