Metadata-Version: 2.4
Name: buildsnap
Version: 0.2.1
Summary: Snap together Python package builds and init
Author-email: imAnesYT <imanesyt.contact@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/imAnesYT/buildsnap
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# BuildSnap

**BuildSnap** is a Python CLI tool that helps you easily build and init Python packages using `setup.py`. It's simple, fast and cool.

## Features

- Build `.tar.gz` (source) and `.whl` (wheel) distributions
- Make a ready setupped package directory and files
- Lightweight and terminal-friendly

## Commands

```bash
buildsnap --help

buildsnap build
options:
--tar, --whl
--path, -p

Example:
buildsnap build --tar -p /sdcard/mypkg

buildsnap init
options
--name
--username

Example:
buildsnap init --name MyPKG --username User

buildsnap install
options:
--path, -p

Example:
buildsnap install --path /sdcard/MyPKG
```

## Installation

```bash
pip install buildsnap
```
