OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot
/
4730
/
usr
/
lib
/
python3
/
dist-packages
/
setuptools
/
_distutils
/
command
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/10/2025 09:51:14 PM
rwxr-xr-x
📄
__init__.py
430 bytes
08/18/2023 12:07:38 PM
rw-r--r--
📄
_framework_compat.py
1.58 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
bdist.py
5.28 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
bdist_dumb.py
4.56 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
bdist_rpm.py
21.5 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
build.py
5.45 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
build_clib.py
7.5 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
build_ext.py
30.76 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
build_py.py
16.15 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
build_scripts.py
5.47 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
check.py
4.76 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
clean.py
2.53 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
config.py
12.77 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
install.py
29.45 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
install_data.py
2.7 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
install_egg_info.py
2.72 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
install_headers.py
1.15 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
install_lib.py
8.21 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
install_scripts.py
1.89 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
py37compat.py
672 bytes
08/18/2023 12:07:38 PM
rw-r--r--
📄
register.py
11.54 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
sdist.py
18.78 KB
08/18/2023 12:07:38 PM
rw-r--r--
📄
upload.py
7.32 KB
08/18/2023 12:07:38 PM
rw-r--r--
Editing: check.py
Close
"""distutils.command.check Implements the Distutils 'check' command. """ import contextlib from ..core import Command from ..errors import DistutilsSetupError with contextlib.suppress(ImportError): import docutils.utils import docutils.parsers.rst import docutils.frontend import docutils.nodes class SilentReporter(docutils.utils.Reporter): def __init__( self, source, report_level, halt_level, stream=None, debug=0, encoding='ascii', error_handler='replace', ): self.messages = [] super().__init__( source, report_level, halt_level, stream, debug, encoding, error_handler ) def system_message(self, level, message, *children, **kwargs): self.messages.append((level, message, children, kwargs)) return docutils.nodes.system_message( message, level=level, type=self.levels[level], *children, **kwargs ) class check(Command): """This command checks the meta-data of the package.""" description = "perform some checks on the package" user_options = [ ('metadata', 'm', 'Verify meta-data'), ( 'restructuredtext', 'r', ( 'Checks if long string meta-data syntax ' 'are reStructuredText-compliant' ), ), ('strict', 's', 'Will exit with an error if a check fails'), ] boolean_options = ['metadata', 'restructuredtext', 'strict'] def initialize_options(self): """Sets default values for options.""" self.restructuredtext = 0 self.metadata = 1 self.strict = 0 self._warnings = 0 def finalize_options(self): pass def warn(self, msg): """Counts the number of warnings that occurs.""" self._warnings += 1 return Command.warn(self, msg) def run(self): """Runs the command.""" # perform the various tests if self.metadata: self.check_metadata() if self.restructuredtext: if 'docutils' in globals(): try: self.check_restructuredtext() except TypeError as exc: raise DistutilsSetupError(str(exc)) elif self.strict: raise DistutilsSetupError('The docutils package is needed.') # let's raise an error in strict mode, if we have at least # one warning if self.strict and self._warnings > 0: raise DistutilsSetupError('Please correct your package.') def check_metadata(self): """Ensures that all required elements of meta-data are supplied. Required fields: name, version Warns if any are missing. """ metadata = self.distribution.metadata missing = [] for attr in 'name', 'version': if not getattr(metadata, attr, None): missing.append(attr) if missing: self.warn("missing required meta-data: %s" % ', '.join(missing)) def check_restructuredtext(self): """Checks if the long string fields are reST-compliant.""" data = self.distribution.get_long_description() for warning in self._check_rst_data(data): line = warning[-1].get('line') if line is None: warning = warning[1] else: warning = '{} (line {})'.format(warning[1], line) self.warn(warning) def _check_rst_data(self, data): """Returns warnings when the provided data doesn't compile.""" # the include and csv_table directives need this to be a path source_path = self.distribution.script_name or 'setup.py' parser = docutils.parsers.rst.Parser() settings = docutils.frontend.OptionParser( components=(docutils.parsers.rst.Parser,) ).get_default_values() settings.tab_width = 4 settings.pep_references = None settings.rfc_references = None reporter = SilentReporter( source_path, settings.report_level, settings.halt_level, stream=settings.warning_stream, debug=settings.debug, encoding=settings.error_encoding, error_handler=settings.error_encoding_error_handler, ) document = docutils.nodes.document(settings, reporter, source=source_path) document.note_source(source_path, -1) try: parser.parse(data, document) except AttributeError as e: reporter.messages.append( (-1, 'Could not finish the parsing: %s.' % e, '', {}) ) return reporter.messages