OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot-dns-digitalocean
/
4349
/
lib
/
python3.12
/
site-packages
/
setuptools
/
command
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/10/2025 09:50:12 PM
rwxr-xr-x
📄
__init__.py
803 bytes
06/10/2025 09:50:04 PM
rw-r--r--
📁
__pycache__
-
06/10/2025 09:50:12 PM
rwxr-xr-x
📄
_requirestxt.py
4.13 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
alias.py
2.32 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
bdist_egg.py
16.57 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
bdist_rpm.py
1.4 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
bdist_wheel.py
21.73 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
build.py
5.91 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
build_clib.py
4.42 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
build_ext.py
17.95 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
build_py.py
15.17 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
develop.py
1.57 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
dist_info.py
3.37 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
easy_install.py
780 bytes
06/10/2025 09:50:04 PM
rw-r--r--
📄
editable_wheel.py
35 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
egg_info.py
25.37 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
install.py
4.95 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
install_egg_info.py
2.03 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
install_lib.py
4.22 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
install_scripts.py
2.58 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
launcher manifest.xml
628 bytes
06/10/2025 09:50:04 PM
rw-r--r--
📄
rotate.py
2.14 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
saveopts.py
692 bytes
06/10/2025 09:50:04 PM
rw-r--r--
📄
sdist.py
7.2 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
setopt.py
4.98 KB
06/10/2025 09:50:04 PM
rw-r--r--
📄
test.py
1.31 KB
06/10/2025 09:50:04 PM
rw-r--r--
Editing: develop.py
Close
import site import subprocess import sys from setuptools import Command from setuptools.warnings import SetuptoolsDeprecationWarning class develop(Command): """Set up package for development""" user_options = [ ("install-dir=", "d", "install package to DIR"), ('no-deps', 'N', "don't install dependencies"), ('user', None, f"install in user site-package '{site.USER_SITE}'"), ('prefix=', None, "installation prefix"), ("index-url=", "i", "base URL of Python Package Index"), ] boolean_options = [ 'no-deps', 'user', ] install_dir = None no_deps = False user = False prefix = None index_url = None def run(self): cmd = ( [sys.executable, '-m', 'pip', 'install', '-e', '.', '--use-pep517'] + ['--target', self.install_dir] * bool(self.install_dir) + ['--no-deps'] * self.no_deps + ['--user'] * self.user + ['--prefix', self.prefix] * bool(self.prefix) + ['--index-url', self.index_url] * bool(self.index_url) ) subprocess.check_call(cmd) def initialize_options(self): DevelopDeprecationWarning.emit() def finalize_options(self) -> None: pass class DevelopDeprecationWarning(SetuptoolsDeprecationWarning): _SUMMARY = "develop command is deprecated." _DETAILS = """ Please avoid running ``setup.py`` and ``develop``. Instead, use standards-based tools like pip or uv. """ _SEE_URL = "https://github.com/pypa/setuptools/issues/917" _DUE_DATE = 2025, 10, 31