PNG  IHDR  8] PLTE S =tRNS   PNG  IHDR  8] PLTE S =tRNS   REDROOM
PHP 7.4.33
Preview: upload.py Size: 6.84 KB
/opt/alt/python27/lib64/python2.7/distutils/command/upload.py

"""distutils.command.upload

Implements the Distutils 'upload' subcommand (upload package to PyPI)."""
import os
import socket
import platform
from urllib2 import urlopen, Request, HTTPError
from base64 import standard_b64encode
import urlparse
import cStringIO as StringIO
from hashlib import md5

from distutils.errors import DistutilsError, DistutilsOptionError
from distutils.core import PyPIRCCommand
from distutils.spawn import spawn
from distutils import log

class upload(PyPIRCCommand):

    description = "upload binary package to PyPI"

    user_options = PyPIRCCommand.user_options + [
        ('sign', 's',
         'sign files to upload using gpg'),
        ('identity=', 'i', 'GPG identity used to sign files'),
        ]

    boolean_options = PyPIRCCommand.boolean_options + ['sign']

    def initialize_options(self):
        PyPIRCCommand.initialize_options(self)
        self.username = ''
        self.password = ''
        self.show_response = 0
        self.sign = False
        self.identity = None

    def finalize_options(self):
        PyPIRCCommand.finalize_options(self)
        if self.identity and not self.sign:
            raise DistutilsOptionError(
                "Must use --sign for --identity to have meaning"
            )
        config = self._read_pypirc()
        if config != {}:
            self.username = config['username']
            self.password = config['password']
            self.repository = config['repository']
            self.realm = config['realm']

        # getting the password from the distribution
        # if previously set by the register command
        if not self.password and self.distribution.password:
            self.password = self.distribution.password

    def run(self):
        if not self.distribution.dist_files:
            msg = ("Must create and upload files in one command "
                   "(e.g. setup.py sdist upload)")
            raise DistutilsOptionError(msg)
        for command, pyversion, filename in self.distribution.dist_files:
            self.upload_file(command, pyversion, filename)

    def upload_file(self, command, pyversion, filename):
        # Makes sure the repository URL is compliant
        schema, netloc, url, params, query, fragments = \
            urlparse.urlparse(self.repository)
        if params or query or fragments:
            raise AssertionError("Incompatible url %s" % self.repository)

        if schema not in ('http', 'https'):
            raise AssertionError("unsupported schema " + schema)

        # 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 - send all the meta-data in case we need to
        # register a new release
        f = open(filename,'rb')
        try:
            content = f.read()
        finally:
            f.close()
        meta = self.distribution.metadata
        data = {
            # action
            ':action': 'file_upload',
            'protcol_version': '1',

            # identify release
            'name': meta.get_name(),
            'version': meta.get_version(),

            # file content
            'content': (os.path.basename(filename),content),
            'filetype': command,
            'pyversion': pyversion,
            'md5_digest': md5(content).hexdigest(),

            # additional meta-data
            'metadata_version' : '1.0',
            'summary': meta.get_description(),
            'home_page': meta.get_url(),
            'author': meta.get_contact(),
            'author_email': meta.get_contact_email(),
            'license': meta.get_licence(),
            'description': meta.get_long_description(),
            'keywords': meta.get_keywords(),
            'platform': meta.get_platforms(),
            'classifiers': meta.get_classifiers(),
            'download_url': meta.get_download_url(),
            # PEP 314
            'provides': meta.get_provides(),
            'requires': meta.get_requires(),
            'obsoletes': meta.get_obsoletes(),
            }
        comment = ''
        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:
            data['gpg_signature'] = (os.path.basename(filename) + ".asc",
                                     open(filename+".asc").read())

        # set up the authentication
        auth = "Basic " + standard_b64encode(self.username + ":" +
                                             self.password)

        # Build up the MIME payload for the POST data
        boundary = '--------------GHSKFJDLGDS7543FJKLFHRE75642756743254'
        sep_boundary = '\r\n--' + boundary
        end_boundary = sep_boundary + '--\r\n'
        body = StringIO.StringIO()
        for key, value in data.items():
            # handle multiple entries for the same name
            if not isinstance(value, list):
                value = [value]
            for value in value:
                if isinstance(value, tuple):
                    fn = ';filename="%s"' % value[0]
                    value = value[1]
                else:
                    fn = ""

                body.write(sep_boundary)
                body.write('\r\nContent-Disposition: form-data; name="%s"' % key)
                body.write(fn)
                body.write("\r\n\r\n")
                body.write(value)
        body.write(end_boundary)
        body = body.getvalue()

        self.announce("Submitting %s to %s" % (filename, self.repository), log.INFO)

        # build the Request
        headers = {'Content-type':
                        'multipart/form-data; boundary=%s' % boundary,
                   'Content-length': str(len(body)),
                   'Authorization': auth}

        request = Request(self.repository, data=body,
                          headers=headers)
        # send the data
        try:
            result = urlopen(request)
            status = result.getcode()
            reason = result.msg
            if self.show_response:
                msg = '\n'.join(('-' * 75, result.read(), '-' * 75))
                self.announce(msg, log.INFO)
        except socket.error, e:
            self.announce(str(e), log.ERROR)
            raise
        except HTTPError, e:
            status = e.code
            reason = e.msg

        if status == 200:
            self.announce('Server response (%s): %s' % (status, reason),
                          log.INFO)
        else:
            msg = 'Upload failed (%s): %s' % (status, reason)
            self.announce(msg, log.ERROR)
            raise DistutilsError(msg)

Directory Contents

Dirs: 0 × Files: 76

Name Size Perms Modified Actions
5.46 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
5.12 KB lrw-r--r-- 2025-12-02 12:55:37
Edit Download
5.12 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
5.07 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
4.93 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
4.93 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
34.37 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
23.62 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
23.51 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
20.56 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
17.31 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
17.23 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
14.65 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
10.60 KB lrw-r--r-- 2025-12-02 12:55:38
Edit Download
10.52 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
5.33 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
5.15 KB lrw-r--r-- 2025-12-02 12:55:12
Edit Download
5.15 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
7.94 KB lrw-r--r-- 2025-01-08 10:54:00
Edit Download
6.33 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
6.33 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
31.74 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
31.51 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
19.13 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
19.13 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
15.96 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
11.49 KB lrw-r--r-- 2025-12-02 12:55:37
Edit Download
11.42 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
4.49 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
4.46 KB lrw-r--r-- 2025-12-02 12:55:37
Edit Download
4.46 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
5.54 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
6.27 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
6.27 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
2.75 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
3.06 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
3.06 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
719 B lrw-r--r-- 2025-01-08 10:54:01
Edit Download
12.82 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
12.64 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
12.64 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
25.65 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
16.73 KB lrw-r--r-- 2025-12-02 12:55:12
Edit Download
16.73 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
2.78 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
3.13 KB lrw-r--r-- 2025-12-02 12:55:38
Edit Download
3.13 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
2.53 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
3.77 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
3.77 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
1.31 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
2.29 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
2.29 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
8.14 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
6.68 KB lrw-r--r-- 2025-12-02 12:55:38
Edit Download
6.68 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
2.02 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
2.95 KB lrw-r--r-- 2025-12-02 12:55:37
Edit Download
2.95 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
11.56 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
10.13 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
10.13 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
18.12 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
16.53 KB lrw-r--r-- 2025-12-02 12:55:37
Edit Download
16.53 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
6.84 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
6.24 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
6.24 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
60.00 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
64.00 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
60.00 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
218.50 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
191.50 KB lrw-r--r-- 2025-01-08 10:54:01
Edit Download
822 B lrw-r--r-- 2025-01-08 10:54:01
Edit Download
678 B lrw-r--r-- 2025-12-02 12:55:12
Edit Download
678 B lrw-r--r-- 2025-01-08 10:54:01
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
 !"#$%&'(()*+,-./00123456789 t\ wIDATx ]ys  47Y ƒ -  "  Rv  < f{Ɛ $k l L > L  ~h^ 1  [  r G t& h  l F z3O Y ! p A(_g̷ E8 )S 8 c  Kb"z ~ 5 J xAL WU <  *  5 m;W a pB h ~P J 2 3 6 ҙ .Ƹ P i  4g F R L P ΪK/D  M v (a3 k J Œ4N5* SH ` SdJ z  O J Xՠ V>u ߱ BE&L b2 ?2` tX+  c CB A$ i b C ĀMB E : /  # Dx &l =q Ty  0 \p I ( L Ǎ { e 4k ;`u^ヲ eP!( d {  )T A 8 O;Ě n >;s6 !  :Nx `[S D HU ~ q›J F} a g*D 49 / pn k h (t 8NxƐF _!r չ7 ZR R׷ q/5") Ӎ NY 0 x sZ!   o  fu  ,  K"$ ? pg  㕣=  1» {h " fh7    y  } € +7  $ y " X —ą - G P u 4 m >J 5 L =V ' ^@I p ?MS xЌ XV P ! h "C NS9B8̢ ]!K  e   zA , ӏkbY  !< XQ ٿyS| *" f { w  4@[S <  # 0 ! js [m  =,~ o "ݎ DHf Wo $ g ! Vԅ t mB /y Wf V4񺍸 c+@x?  B ~u " xUN e 0 BĂ) ~J pz! 7y6]l Ԥ@ P a< O /DHC `≻  N m"$  0ObB }{ x AO FCG D R ^ "B  { WDH  UR l@ T #  +"d T ; 0 i  D}. 7 ` ' ] w rE &S i ƕiTD EL P _ u h $ Ա FG wVD G L R Zf ' .!] J /ZR oGЍs Mr Ĥ ʬ 3 Q [3 cL ` ^ p + ( F;# B 5 '  2Y f [  ϶R0e }  E 7 6M aۮ H <& n % L] E}Up x紉, Uw' Q  Ǯշo k ވۙ 0N94 VX5 xEDE l D #֤ } C o )W :  ^ s 9  bRf iX5u ཱི 4 :[  T 1. | [E 2ؽ Iy\ : o x K G 5 ylP ' uK E ftb/i[3 .g _  [3M n G, #NwQ5~  ؚ) | n =Ц"x qg gB ` 듘 ~ x w ? ? R~  _ u. &VQ K˻   H C ( TN˄+ `C dA nB׭ D 3"Z G ê ^k H_ /- ~ " R_  .8 Z_ 6@ o  xg  uP ? 3լ @7AM!  E7^ - =V L  x  g-D0  CtmW 7  O  G _ WD0 g C  w1 r d w : a | \  *" f nֳ ^ H# f L ` Z ۽hV  }S F r0Ù Bć5r] @! NL iQ]{s^=4 d  WD  "  "   M; t" 8 5 e dL| "-*st" ) SWD ?R[S e ooF  20.D ? bo =) A i o d ģ ZҰaO @E =) i D a &ܟa CϞ y6 ,<%{^x%{f8? `iw^ ?/ M * IEND B`