summaryrefslogtreecommitdiff
path: root/setuptools/command/setopt.py
Commit message (Collapse)AuthorAgeFilesLines
* Modeling after Astropy's technique for bundling libraries, the imports are ↵Jason R. Coombs2015-12-311-6/+1
| | | | now much cleaner. Thanks @embray. Ref #229.
* Update vendoring technique to match that used for packaging. Ref #229.Jason R. Coombs2015-12-311-1/+6
|
* Use six for Python 2 compatibilityJason R. Coombs2014-07-051-3/+3
|
* Fixed PEP 8 compliancy of the setuptools.command packageAlex Gr?nholm2014-06-181-20/+25
|
* Normalize whitespace and importsJason R. Coombs2014-02-091-35/+16
|
* Initial commit. All tests pass on 2.7, 3.2 and 3.3, though there are some ↵Vinay Sajip2013-06-151-2/+2
| | | | atexit errors in the multiprocessing module in 2.7/3.2 (seemingly unrelated to setuptools).
* Delete empty sections when their last option is deleted.PJ Eby2005-07-081-6/+6
|
* Added support for defining command aliases in distutils configurationPJ Eby2005-07-081-5/+5
| | | | | | | files, under the "[aliases]" section. To prevent recursion and to allow aliases to call the command of the same name, a given alias can be expanded only once per command-line invocation. You can define new aliases with the "alias" command, either for the local, global, or per-user configuration.
* * Added "rotate" command to delete old distribution files, given a set ofPJ Eby2005-07-081-0/+164
patterns to match and the number of files to keep. (Keeps the most recently-modified distribution files matching each pattern.) * Added "saveopts" command that saves all command-line options for the current invocation to the local, global, or per-user configuration file. Useful for setting defaults without having to hand-edit a configuration file. * Added a "setopt" command that sets a single option in a specified distutils configuration file.