PATH:
opt
/
imunify360
/
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): dist = self.distribution settings = {} 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)
[-] build.py
[edit]
[-] install_scripts.py
[edit]
[-] egg_info.py
[edit]
[-] launcher manifest.xml
[edit]
[-] rotate.py
[edit]
[+]
..
[-] develop.py
[edit]
[-] test.py
[edit]
[-] saveopts.py
[edit]
[-] _requirestxt.py
[edit]
[-] install.py
[edit]
[-] upload.py
[edit]
[-] bdist_egg.py
[edit]
[+]
__pycache__
[-] bdist_rpm.py
[edit]
[-] editable_wheel.py
[edit]
[-] register.py
[edit]
[-] build_clib.py
[edit]
[-] install_lib.py
[edit]
[-] dist_info.py
[edit]
[-] __init__.py
[edit]
[-] upload_docs.py
[edit]
[-] install_egg_info.py
[edit]
[-] build_ext.py
[edit]
[-] setopt.py
[edit]
[-] easy_install.py
[edit]
[-] sdist.py
[edit]
[-] alias.py
[edit]
[-] build_py.py
[edit]