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
+12
View File
@@ -0,0 +1,12 @@
from setuptools import setup, find_packages
setup(
name="zvml",
version="0.1.0",
packages=find_packages(),
install_requires=[
"requests>=2.31.0",
"urllib3>=2.1.0"
],
python_requires=">=3.6",
)