Metadata-Version: 2.4
Name: redu
Version: 1.0.0
Summary: Redu Cloud CLI
Home-page: https://redu.cloud
Author: Miloš Živanović
Author-email: Miloš Živanović <office@redu.cloud>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.1.7
Requires-Dist: requests>=2.31.0
Requires-Dist: cryptography>=42.0
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Redu CLI

A command-line tool to authenticate against Redu Cloud

## Installation

## Download the .deb file
wget https://redu.cloud/redu_1.0.0_all.deb

## Fix any missing dependencies automatically
sudo apt-get install -f

redu --help

redu auth -u radmin
redu server list

## TO BUILD USING PYTHON 

pip install --upgrade build
python3 -m build
redu --help
## TO INSTALL USING PYTHON 

python3 -m venv ~/redu-cli-venv
source ~/redu-cli-venv/bin/activate
pip install --upgrade pip setuptools wheel
pip install -e .
redu --help


## TO BUILD USING .DEB
sudo rm -rf redu_1.0.0/opt/
mkdir redu_1.0.0/opt
mkdir redu_1.0.0/opt/redu
cp -r redu/ redu_1.0.0/opt/.
sudo chown -R root:root redu_1.0.0/opt/redu

dpkg-deb --build redu_1.0.0

## TO INSTALL USING .DEB
sudo dpkg -i redu_1.0.0.deb
