Metadata-Version: 2.4
Name: kbackup
Version: 0.1
Summary: kubernetes manifest backup with well-structured folder
Author: Ahmad Bayhaqi
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/Kyuubang/kbackup
Project-URL: Changelog, https://github.com/Kyuubang/kbackup/releases
Project-URL: Issues, https://github.com/Kyuubang/kbackup/issues
Project-URL: CI, https://github.com/Kyuubang/kbackup/actions
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: kubernetes
Requires-Dist: jq
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Dynamic: license-file

# kbackup

[![PyPI](https://img.shields.io/pypi/v/kbackup.svg)](https://pypi.org/project/kbackup/)
[![Changelog](https://img.shields.io/github/v/release/Kyuubang/kbackup?include_prereleases&label=changelog)](https://github.com/Kyuubang/kbackup/releases)
[![Tests](https://github.com/Kyuubang/kbackup/actions/workflows/test.yml/badge.svg)](https://github.com/Kyuubang/kbackup/actions/workflows/test.yml)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/Kyuubang/kbackup/blob/master/LICENSE)

kubernetes manifest backup with well-structured folder

## Installation

Install this tool using `pip`:
```bash
pip install kbackup
```
## Usage

For help, run:
```bash
kbackup --help
```
You can also use:
```bash
python -m kbackup --help
```
## Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:
```bash
cd kbackup
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```
