ÿØÿà JFIF ` ` ÿþxØ
| Server IP : 109.234.164.53 / Your IP : 216.73.216.110 Web Server : Apache System : Linux cervelle.o2switch.net 4.18.0-553.32.1.lve.el8.x86_64 #1 SMP Thu Dec 19 13:14:03 UTC 2024 x86_64 User : computer3 ( 1098) PHP Version : 7.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/alt/python27/lib/python2.7/site-packages/pkginfo/ |
Upload File : |
import os
import sys
import warnings
from pkginfo.distribution import Distribution
def _gather_py2(top, candidates): #pragma NO COVER Py3k
def _filter(candidates, dirname, fnames):
for fname in fnames:
fqn = os.path.join(dirname, fname)
if os.path.isdir(fqn):
if fname == 'EGG-INFO' or fname.endswith('.egg-info'):
candidates.append(fqn)
os.path.walk(top, _filter, candidates)
def _gather_py3(top, candidates): #pragma NO COVER Python2
for dirpath, dirnames, fnames in os.walk(top):
for dirname in dirnames:
fqn = os.path.join(dirpath, dirname)
if dirname == 'EGG-INFO' or dirname.endswith('.egg-info'):
candidates.append(fqn)
if sys.version_info[0] < 3: #pragma NO COVER Python2
_gather = _gather_py2
else: #pragma NO COVER Py3k
_gather = _gather_py3
class Develop(Distribution):
def __init__(self, path, metadata_version=None):
self.path = os.path.abspath(
os.path.normpath(
os.path.expanduser(path)))
self.metadata_version = metadata_version
self.extractMetadata()
def read(self):
candidates = [self.path]
_gather(self.path, candidates)
for candidate in candidates:
path = os.path.join(candidate, 'PKG-INFO')
if os.path.exists(path):
with open(path) as f:
return f.read()
warnings.warn('No PKG-INFO found for path: %s' % self.path)