added pg_setting_export_example_enhanced.py and new method list_vpgs_from_exported_settings in vpgs.py

This commit is contained in:
Kosta Mushkin
2025-04-23 21:50:01 -04:00
parent ba16ef9a08
commit 6a8b9b18fc
575 changed files with 210139 additions and 1 deletions
@@ -0,0 +1,17 @@
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)