converted to python package

This commit is contained in:
ahmadbilalkhalid 2019-12-02 22:37:14 +05:00
commit 8bb860024a
23 changed files with 110 additions and 309 deletions

View file

@ -0,0 +1,13 @@
Metadata-Version: 1.1
Name: ucloud-cli
Version: 0.1
Summary: A utility to interact with ucloud server.
Home-page: https://code.ungleich.ch/ucloud/ucloud-cli
Author: ungleich
Author-email: technik@ungleich.ch
License: GPLv3
Description: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3

View file

@ -0,0 +1,18 @@
setup.py
bin/ucloud-cli
ucloud_cli/__init__.py
ucloud_cli/config.py
ucloud_cli/helper.py
ucloud_cli.egg-info/PKG-INFO
ucloud_cli.egg-info/SOURCES.txt
ucloud_cli.egg-info/dependency_links.txt
ucloud_cli.egg-info/not-zip-safe
ucloud_cli.egg-info/requires.txt
ucloud_cli.egg-info/top_level.txt
ucloud_cli/commands/__init__.py
ucloud_cli/commands/helper.py
ucloud_cli/commands/host.py
ucloud_cli/commands/image.py
ucloud_cli/commands/network.py
ucloud_cli/commands/user.py
ucloud_cli/commands/vm.py

View file

@ -0,0 +1 @@

View file

@ -0,0 +1 @@

View file

@ -0,0 +1,4 @@
requests
python-decouple
pyotp
click

View file

@ -0,0 +1 @@
ucloud_cli