/usr/share/cagefs-skeleton/opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/command
from setuptools.command.setopt import edit_config, option_base class saveopts(option_base): """Save command-line options to a file""" description = "save supplied options to setup.cfg or other config file" def run(self) -> None: dist = self.distribution settings: dict[str, dict[str, str]] = {} for cmd in dist.command_options: if cmd == 'saveopts': continue # don't save our own options! for opt, (src, val) in dist.get_option_dict(cmd).items(): if src == "command line": settings.setdefault(cmd, {})[opt] = val edit_config(self.filename, settings, self.dry_run)
.
Edit
..
Edit
__init__.py
Edit
__pycache__
Edit
_requirestxt.py
Edit
alias.py
Edit
bdist_egg.py
Edit
bdist_rpm.py
Edit
bdist_wheel.py
Edit
build.py
Edit
build_clib.py
Edit
build_ext.py
Edit
build_py.py
Edit
develop.py
Edit
dist_info.py
Edit
easy_install.py
Edit
editable_wheel.py
Edit
egg_info.py
Edit
install.py
Edit
install_egg_info.py
Edit
install_lib.py
Edit
install_scripts.py
Edit
launcher manifest.xml
Edit
rotate.py
Edit
saveopts.py
Edit
sdist.py
Edit
setopt.py
Edit
test.py
Edit