Move old CLI client out of the way

This commit is contained in:
2023-08-16 23:54:51 -04:00
parent 30ebd6b42c
commit a70273dbae
19 changed files with 47 additions and 14 deletions

20
client-cli-old/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",
],
},
)