"""distutils.command.upload Implements the Distutils 'upload' subcommand (upload package to PyPI).""" from distutils.errors import * from distutils.core import Command from distutils.spawn import spawn from distutils import log try: from hashlib import md5 except ImportError: from md5 import md5 import os import sys import socket import platform import base64 from setuptools.compat import urlparse, StringIO, httplib, ConfigParser class upload(Command): description = "upload binary package to PyPI" DEFAULT_REPOSITORY = 'https://pypi.python.org/pypi' user_options = [ ('repository=', 'r', "url of repository [default: %s]" % DEFAULT_REPOSITORY), ('show-response', None, 'display full response text from server'), ('sign', 's', 'sign files to upload using gpg'), ('identity=', 'i', 'GPG identity used to sign files'), ] boolean_options = ['show-response', 'sign'] def initialize_options(self): self.username = '' self.password = '' self.repository = '' self.show_response = 0 self.sign = False self.identity = None def finalize_options(self): if self.identity and not self.sign: raise DistutilsOptionError( "Must use --sign for --identity to have meaning" ) if 'HOME' in os.environ: rc = os.path.join(os.environ['HOME'], '.pypirc') if os.path.exists(rc): self.announce('Using PyPI login from %s' % rc) config = ConfigParser.ConfigParser({ 'username':'', 'password':'', 'repository':''}) config.read(rc) if not self.repository: self.repository = config.get('server-login', 'repository') if not self.username: self.username = config.get('server-login', 'username') if not self.password: self.password = config.get('server-login', 'password') if not self.repository: self.repository = self.DEFAULT_REPOSITORY def run(self): if not self.distribution.dist_files: raise DistutilsOptionError("No dist file created in earlier command") for command, pyversion, filename in self.distribution.dist_files: self.upload_file(command, pyversion, filename) def upload_file(self, command, pyversion, filename): # Sign if requested if self.sign: gpg_args = ["gpg", "--detach-sign", "-a", filename] if self.identity: gpg_args[2:2] = ["--local-user", self.identity] spawn(gpg_args, dry_run=self.dry_run) # Fill in the data f = open(filename,'rb') content = f.read() f.close() basename = os.path.basename(filename) comment = '' if command=='bdist_egg' and self.distribution.has_ext_modules(): comment = "built on %s" % platform.platform(terse=1) data = { ':action':'file_upload', 'protocol_version':'1', 'name':self.distribution.get_name(), 'version':self.distribution.get_version(), 'content':(basename,content), 'filetype':command, 'pyversion':pyversion, 'md5_digest':md5(content).hexdigest(), } if command == 'bdist_rpm': dist, version, id = platform.dist() if dist: comment = 'built for %s %s' % (dist, version) elif command == 'bdist_dumb': comment = 'built for %s' % platform.platform(terse=1) data['comment'] = comment if self.sign: asc_file = open(filename + ".asc") data['gpg_signature'] = (os.path.basename(filename) + ".asc", asc_file.read()) asc_file.close() # set up the authentication auth = "Basic " + base64.encodestring(self.username + ":" + self.password).strip() # Build up the MIME payload for the POST data boundary = '--------------GHSKFJDLGDS7543FJKLFHRE75642756743254' sep_boundary = '\n--' + boundary end_boundary = sep_boundary + '--' body = StringIO.StringIO() for key, value in data.items(): # handle multiple entries for the same name if type(value) != type([]): value = [value] for value in value: if type(value) is tuple: fn = ';filename="%s"' % value[0] value = value[1] else: fn = "" value = str(value) body.write(sep_boundary) body.write('\nContent-Disposition: form-data; name="%s"'%key) body.write(fn) body.write("\n\n") body.write(value) if value and value[-1] == '\r': body.write('\n') # write an extra newline (lurve Macs) body.write(end_boundary) body.write("\n") body = body.getvalue() self.announce("Submitting %s to %s" % (filename, self.repository), log.INFO) # build the Request # We can't use urllib2 since we need to send the Basic # auth right with the first request schema, netloc, url, params, query, fragments = \ urlparse(self.repository) assert not params and not query and not fragments if schema == 'http': http = httplib.HTTPConnection(netloc) elif schema == 'https': http = httplib.HTTPSConnection(netloc) else: raise AssertionError("unsupported schema " + schema) data = '' loglevel = log.INFO try: http.connect() http.putrequest("POST", url) http.putheader('Content-type', 'multipart/form-data; boundary=%s'%boundary) http.putheader('Content-length', str(len(body))) http.putheader('Authorization', auth) http.endheaders() http.send(body) except socket.error: e = sys.exc_info()[1] self.announce(str(e), log.ERROR) return r = http.getresponse() if r.status == 200: self.announce('Server response (%s): %s' % (r.status, r.reason), log.INFO) else: self.announce('Upload failed (%s): %s' % (r.status, r.reason), log.ERROR) if self.show_response: print('-'*75, r.read(), '-'*75)
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
.__init__.pyo.40009 | File | 911 B | 0644 |
|
.alias.pyo.40009 | File | 3.16 KB | 0644 |
|
.bdist_egg.pyo.40009 | File | 18.18 KB | 0644 |
|
.bdist_rpm.pyo.40009 | File | 2.24 KB | 0644 |
|
.bdist_wininst.pyo.40009 | File | 2.33 KB | 0644 |
|
.build_py.pyo.40009 | File | 11.38 KB | 0644 |
|
.develop.pyo.40009 | File | 5.68 KB | 0644 |
|
.easy_install.pyo.40009 | File | 65.69 KB | 0644 |
|
.egg_info.pyo.40009 | File | 17.27 KB | 0644 |
|
.install.pyo.40009 | File | 3.67 KB | 0644 |
|
.install_egg_info.pyo.40009 | File | 4.56 KB | 0644 |
|
.install_scripts.pyo.40009 | File | 2.54 KB | 0644 |
|
.register.pyo.40009 | File | 692 B | 0644 |
|
.rotate.pyo.40009 | File | 2.88 KB | 0644 |
|
.saveopts.pyo.40009 | File | 1.2 KB | 0644 |
|
.sdist.pyo.40009 | File | 9.92 KB | 0644 |
|
.setopt.pyo.40009 | File | 5.91 KB | 0644 |
|
.test.pyo.40009 | File | 5.76 KB | 0644 |
|
__init__.py | File | 689 B | 0644 |
|
__init__.pyc | File | 911 B | 0644 |
|
__init__.pyo | File | 911 B | 0644 |
|
alias.py | File | 2.43 KB | 0644 |
|
alias.pyc | File | 3.16 KB | 0644 |
|
alias.pyo | File | 3.16 KB | 0644 |
|
bdist_egg.py | File | 18.28 KB | 0644 |
|
bdist_egg.pyc | File | 18.18 KB | 0644 |
|
bdist_egg.pyo | File | 18.18 KB | 0644 |
|
bdist_rpm.py | File | 1.98 KB | 0644 |
|
bdist_rpm.pyc | File | 2.24 KB | 0644 |
|
bdist_rpm.pyo | File | 2.24 KB | 0644 |
|
bdist_wininst.py | File | 2.23 KB | 0644 |
|
bdist_wininst.pyc | File | 2.33 KB | 0644 |
|
bdist_wininst.pyo | File | 2.33 KB | 0644 |
|
build_ext.py | File | 11.58 KB | 0644 |
|
build_ext.pyc | File | 10.08 KB | 0644 |
|
build_ext.pyo | File | 10.04 KB | 0644 |
|
build_py.py | File | 10.29 KB | 0644 |
|
build_py.pyc | File | 11.38 KB | 0644 |
|
build_py.pyo | File | 11.38 KB | 0644 |
|
develop.py | File | 6.3 KB | 0644 |
|
develop.pyc | File | 5.68 KB | 0644 |
|
develop.pyo | File | 5.68 KB | 0644 |
|
easy_install.py | File | 73.07 KB | 0755 |
|
easy_install.pyc | File | 65.69 KB | 0644 |
|
easy_install.pyo | File | 65.69 KB | 0644 |
|
egg_info.py | File | 15.42 KB | 0644 |
|
egg_info.pyc | File | 17.27 KB | 0644 |
|
egg_info.pyo | File | 17.27 KB | 0644 |
|
install.py | File | 3.97 KB | 0644 |
|
install.pyc | File | 3.67 KB | 0644 |
|
install.pyo | File | 3.67 KB | 0644 |
|
install_egg_info.py | File | 3.74 KB | 0644 |
|
install_egg_info.pyc | File | 4.56 KB | 0644 |
|
install_egg_info.pyo | File | 4.56 KB | 0644 |
|
install_lib.py | File | 2.43 KB | 0644 |
|
install_lib.pyc | File | 3.14 KB | 0644 |
|
install_lib.pyo | File | 3.1 KB | 0644 |
|
install_scripts.py | File | 2.02 KB | 0644 |
|
install_scripts.pyc | File | 2.54 KB | 0644 |
|
install_scripts.pyo | File | 2.54 KB | 0644 |
|
register.py | File | 277 B | 0644 |
|
register.pyc | File | 692 B | 0644 |
|
register.pyo | File | 692 B | 0644 |
|
rotate.py | File | 2.01 KB | 0644 |
|
rotate.pyc | File | 2.88 KB | 0644 |
|
rotate.pyo | File | 2.88 KB | 0644 |
|
saveopts.py | File | 705 B | 0644 |
|
saveopts.pyc | File | 1.2 KB | 0644 |
|
saveopts.pyo | File | 1.2 KB | 0644 |
|
sdist.py | File | 9.6 KB | 0644 |
|
sdist.pyc | File | 9.92 KB | 0644 |
|
sdist.pyo | File | 9.92 KB | 0644 |
|
setopt.py | File | 4.95 KB | 0644 |
|
setopt.pyc | File | 5.91 KB | 0644 |
|
setopt.pyo | File | 5.91 KB | 0644 |
|
test.py | File | 5.79 KB | 0644 |
|
test.pyc | File | 5.76 KB | 0644 |
|
test.pyo | File | 5.76 KB | 0644 |
|
upload.py | File | 6.57 KB | 0644 |
|
upload.pyc | File | 6.28 KB | 0644 |
|
upload.pyo | File | 6.26 KB | 0644 |
|
upload_docs.py | File | 6.81 KB | 0644 |
|
upload_docs.pyc | File | 7.01 KB | 0644 |
|
upload_docs.pyo | File | 6.98 KB | 0644 |
|