Metadata-Version: 2.3
Name: SendDeploy
Version: 0.0.2
Summary: A CLI tool to manage SSH keys and upload files via SCP
Project-URL: Homepage, https://github.com/Juliyo/SendDeploy
Project-URL: Issues, https://github.com/Juliyo/SendDeploy/issues
Author-email: Julio Zamora <julio17795@gmail.com>
License-File: LICENSE
Requires-Dist: paramiko
Requires-Dist: scp
Description-Content-Type: text/markdown

# SendDeploy

A CLI tool to manage SSH keys and upload files via SCP

# Usage

```bash
SendDeploy [-h] {genkey,file} [filename]
```

# Development

## Prerequisites

```bash
python3 -m pip install --upgrade build
```

```bash
python3 -m pip install --upgrade twine
```

## Build package

```bash
python3 -m build
```

## Upload package

```bash
python3 -m twine upload dist/*
```
