PATH: //proc/self/root/opt/alt/python311/lib/python3.11/site-packages/setuptools/command
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 alias.py
↓
X
📄 bdist_egg.py
↓
X
📄 bdist_rpm.py
↓
X
📄 build.py
↓
X
📄 build_clib.py
↓
X
📄 build_ext.py
↓
X
📄 build_py.py
↓
X
📄 develop.py
↓
X
📄 dist_info.py
↓
X
📄 easy_install.py
↓
X
📄 editable_wheel.py
↓
X
📄 egg_info.py
↓
X
📄 install.py
↓
X
📄 install_egg_info.py
↓
X
📄 install_lib.py
↓
X
📄 install_scripts.py
↓
X
📄 launcher manifest.xml
↓
X
📄 py36compat.py
↓
X
📄 register.py
↓
X
📄 rotate.py
↓
X
📄 saveopts.py
↓
X
📄 sdist.py
↓
X
📄 setopt.py
↓
X
📄 test.py
↓
X
📄 upload.py
↓
X
📄 upload_docs.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: upload.py
from distutils import log from distutils.command import upload as orig from setuptools.errors import RemovedCommandError class upload(orig.upload): """Formerly used to upload packages to PyPI.""" def run(self): msg = ( "The upload command has been removed, use twine to upload " + "instead (https://pypi.org/p/twine)" ) self.announce("ERROR: " + msg, log.ERROR) raise RemovedCommandError(msg)
SIMPAN PERUBAHAN