Metadata-Version: 2.1
Name: pve-cli
Version: 0.5.1
Summary: CLI Tool to manage VMs and more on proxmox clusters
Author-Email: Dominik Rimpf <dev@drimpf.de>
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Project-URL: Source code, https://gitlab.com/domrim/pve-cli
Requires-Python: >=3.9
Requires-Dist: proxmoxer~=2.0
Requires-Dist: requests~=2.31
Requires-Dist: typer[all]~=0.11
Requires-Dist: toml~=0.10
Requires-Dist: requests-toolbelt~=1.0
Description-Content-Type: text/markdown

# pve-cli

CLI Tool to manage VMs and more on proxmox clusters

## Config

For config option reference see `config.example.toml`.
The config file path can be provided via command line option `--config`/`-c` and is searched by default in the following
paths:

* Linux (Unix): `~/.config/pve-cli/config.toml`
* MacOS: `~/Library/Application Support/pve-cli/config.toml`
* Windows: `C:\Users\<user>\AppData\Local\pve-cli\config.toml`

This leverages the [`get_app_dir`](https://click.palletsprojects.com/en/8.1.x/api/#click.get_app_dir) method
from [`click`](https://click.palletsprojects.com).

## Required PVE Permissions

For full functionallity following permissions are required:
* `Sys.Audit`
* `Sys.PowerMgmt`
* `VM.Audit`
* `VM.Migrate`
* `VM.Monitor`
