Initial work on new CLI client rewrite

1. lib copied verbatim from existing client
2. initial reworking of Click to split logic from Click definitions
This commit is contained in:
2023-05-02 16:12:40 -04:00
parent 4685ba1ec4
commit e294e1c087
17 changed files with 10783 additions and 0 deletions

20
cli-client-new/setup.py Normal file
View File

@ -0,0 +1,20 @@
from setuptools import setup
setup(
name="pvc",
version="0.9.63",
packages=["pvc", "pvc.lib"],
install_requires=[
"Click",
"PyYAML",
"lxml",
"colorama",
"requests",
"requests-toolbelt",
],
entry_points={
"console_scripts": [
"pvc = pvc.pvc:cli",
],
},
)