<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>7. Uploading Packages to the Package Index — Python v2.6.6 documentation</title>
<link rel="stylesheet" href="../_static/default.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '2.6.6',
COLLAPSE_MODINDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Python v2.6.6 documentation"
href="../_static/opensearch.xml"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="copyright" title="Copyright" href="../copyright.html" />
<link rel="top" title="Python v2.6.6 documentation" href="../index.html" />
<link rel="up" title="Distributing Python Modules" href="index.html" />
<link rel="next" title="8. Examples" href="examples.html" />
<link rel="prev" title="6. Registering with the Package Index" href="packageindex.html" />
<link rel="shortcut icon" type="image/png" href="../_static/py.png" />
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="../modindex.html" title="Global Module Index"
accesskey="M">modules</a> |</li>
<li class="right" >
<a href="examples.html" title="8. Examples"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="packageindex.html" title="6. Registering with the Package Index"
accesskey="P">previous</a> |</li>
<li><img src="../_static/py.png" alt=""
style="vertical-align: middle; margin-top: -1px"/></li>
<li><a href="../index.html">Python v2.6.6 documentation</a> »</li>
<li><a href="index.html" accesskey="U">Distributing Python Modules</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="uploading-packages-to-the-package-index">
<span id="package-upload"></span><h1>7. Uploading Packages to the Package Index<a class="headerlink" href="#uploading-packages-to-the-package-index" title="Permalink to this headline">ΒΆ</a></h1>
<p class="versionadded">
<span class="versionmodified">New in version 2.5.</span></p>
<p>The Python Package Index (PyPI) not only stores the package info, but also the
package data if the author of the package wishes to. The distutils command
<strong>upload</strong> pushes the distribution files to PyPI.</p>
<p>The command is invoked immediately after building one or more distribution
files. For example, the command</p>
<div class="highlight-python"><pre>python setup.py sdist bdist_wininst upload</pre>
</div>
<p>will cause the source distribution and the Windows installer to be uploaded to
PyPI. Note that these will be uploaded even if they are built using an earlier
invocation of <tt class="docutils literal"><span class="pre">setup.py</span></tt>, but that only distributions named on the command
line for the invocation including the <strong>upload</strong> command are uploaded.</p>
<p>The <strong>upload</strong> command uses the username, password, and repository URL
from the <tt class="docutils literal"><span class="pre">$HOME/.pypirc</span></tt> file (see section <a class="reference external" href="packageindex.html#pypirc"><em>The .pypirc file</em></a> for more on this
file).</p>
<p>You can specify another PyPI server with the <em class="xref">--repository=*url*</em> option:</p>
<div class="highlight-python"><pre>python setup.py sdist bdist_wininst upload -r http://example.com/pypi</pre>
</div>
<p>See section <a class="reference external" href="packageindex.html#pypirc"><em>The .pypirc file</em></a> for more on defining several servers.</p>
<p>You can use the <em class="xref">--sign</em> option to tell <strong>upload</strong> to sign each
uploaded file using GPG (GNU Privacy Guard). The <strong>gpg</strong> program must
be available for execution on the system <span class="target" id="index-164"></span><strong class="xref">PATH</strong>. You can also specify
which key to use for signing using the <em class="xref">--identity=*name*</em> option.</p>
<p>Other <strong>upload</strong> options include <em class="xref">--repository=</em> or
<em class="xref">--repository=</em> where <em>url</em> is the url of the server and
<em>section</em> the name of the section in <tt class="docutils literal"><span class="pre">$HOME/.pypirc</span></tt>, and
<em class="xref">--show-response</em> (which displays the full response text from the PyPI
server for help in debugging upload problems).</p>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
<p class="topless"><a href="packageindex.html"
title="previous chapter">6. Registering with the Package Index</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="examples.html"
title="next chapter">8. Examples</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../bugs.html">Report a Bug</a></li>
<li><a href="../_sources/distutils/uploading.txt"
rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
<input type="text" name="q" size="18" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="../modindex.html" title="Global Module Index"
>modules</a> |</li>
<li class="right" >
<a href="examples.html" title="8. Examples"
>next</a> |</li>
<li class="right" >
<a href="packageindex.html" title="6. Registering with the Package Index"
>previous</a> |</li>
<li><img src="../_static/py.png" alt=""
style="vertical-align: middle; margin-top: -1px"/></li>
<li><a href="../index.html">Python v2.6.6 documentation</a> »</li>
<li><a href="index.html" >Distributing Python Modules</a> »</li>
</ul>
</div>
<div class="footer">
© <a href="../copyright.html">Copyright</a> 1990-2011, Python Software Foundation.
<br />
The Python Software Foundation is a non-profit corporation.
<a href="http://www.python.org/psf/donations/">Please donate.</a>
<br />
Last updated on Jul 20, 2011.
<a href="../bugs.html">Found a bug</a>?
<br />
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.6.
</div>
</body>
</html>
Copyright 2K16 - 2K18 Indonesian Hacker Rulez