summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/register.py
Commit message (Collapse)AuthorAgeFilesLines
* #1858: re-apply patch for this, adding the missing filesAndrew M. Kuchling2008-05-111-48/+49
|
* Revert r62998 as it broke the build (seems distutils.config is missing).Brett Cannon2008-05-101-49/+48
|
* #1858 from Tarek Ziade:Andrew M. Kuchling2008-05-101-48/+49
| | | | | | | | | 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-1/+1
|
* Removed uses of dict.has_key() from distutils, and uses ofGuido van Rossum2008-02-211-2/+2
| | | | | | callable() from copy_reg.py, so the interpreter now starts up without warnings when '-3' is given. More work like this needs to be done in the rest of the stdlib.
* Change location of the package index to pypi.python.org/pypiMartin v. Löwis2007-07-251-1/+1
|
* [Bug #1545341] Allow 'classifier' parameter to be a tuple as well as a list. ↵Andrew M. Kuchling2006-10-061-1/+1
| | | | Will backport.
* Since PyPI only accepts UTF-8 encoded data now, make sure that the data isWalter Dörwald2005-03-311-2/+2
| | | | properly encoded and include the encoding in the Content-Type header.
* PEP 314 implementation (client side):Fred Drake2005-03-201-0/+6
| | | | added support for the provides, requires, and obsoletes metadata fields
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-1/+0
|
* Remove the --verify option in favor of the standard -n/--dry-run optionAndrew M. Kuchling2003-04-091-4/+1
|
* Improve descriptionAndrew M. Kuchling2003-03-031-1/+1
|
* Include download_url in the data POSTed to the catalog serverAndrew M. Kuchling2003-02-191-0/+1
|
* [Patch #684398] Rename verbose argument to show-response; don't ↵Andrew M. Kuchling2003-02-191-9/+8
| | | | conditionalize the get_classifiers() call
* Use python.org as the repositoryAndrew M. Kuchling2003-02-181-2/+1
|
* [Patch #658094 ] PEP 301 implementationAndrew M. Kuchling2003-01-031-0/+293
Add the 'register' distutils command