Metadata-Version: 2.3
Name: SendDeploy
Version: 0.0.8
Summary: A CLI tool to upload files via SCP from Windows
Project-URL: Homepage, https://github.com/Juliyo/SendDeploy
Project-URL: Issues, https://github.com/Juliyo/SendDeploy/issues
Author-email: Julio Zamora <julio17795@gmail.com>
Requires-Dist: paramiko
Requires-Dist: scp
Requires-Dist: tqdm
Requires-Dist: windows-curses
Description-Content-Type: text/markdown

# SendDeploy

A CLI tool to upload files via SCP from Windows

# Usage

```bash
SendDeploy [-h] filename
```

# Development

## Prerequisites

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

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

## Build package

```bash
python -m build
```

## Install from source

```bash
pip install -e .
```

## Upload package

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