summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_dist.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #2562: Fix distutils PKG-INFO writing logic to allow havingMarc-André Lemburg2008-09-031-0/+35
| | | | non-ascii characters and Unicode in setup.py meta-data.
* Try setting HOME env.var to fix test on Win32Andrew M. Kuchling2008-05-111-1/+1
|
* Add message to test assertionAndrew M. Kuchling2008-05-111-1/+2
|
* #1858: re-apply patch for this, adding the missing filesAndrew M. Kuchling2008-05-111-0/+46
|
* Revert r62998 as it broke the build (seems distutils.config is missing).Brett Cannon2008-05-101-47/+0
|
* #1858 from Tarek Ziade:Andrew M. Kuchling2008-05-101-0/+47
| | | | | | | | | Allow multiple repositories in .pypirc; see http://wiki.python.org/moin/EnhancedPyPI for discussion. The patch is slightly revised from Tarek's last patch: I've simplified the PyPIRCCommand.finalize_options() method to not look at sys.argv. Tests still pass.
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-2/+0
|
* Whitespace normalization.Tim Peters2005-03-281-1/+1
|
* PEP 314 implementation (client side):Fred Drake2005-03-201-1/+90
| | | | added support for the provides, requires, and obsoletes metadata fields
* This allows additional commands to be provided for existing setup.pyFred Drake2004-08-031-0/+100
scripts without modifying either the distutils installation or the setup.py scripts of packages with which the new commands will be used. Specifically, an option is added to distutils that allows additional packages to be searched for command implementations in addition to distutils.command. The additional packages can be specified on the command line or via the installation or personal configuration files already loaded by distutils. For discussion, see the thread starting with: http://mail.python.org/pipermail/distutils-sig/2004-August/004112.html This closes SF patch #102241.