Metadata-Version: 2.4
Name: buildsnap
Version: 0.1.1
Summary: Snap together Python package builds and init
Home-page: https://github.com/imAnesYT/buildsnap
Author: imAnesYT
Author-email: imanesyt.contact@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# BuildSnap

**BuildSnap** is a Python CLI tool that helps you easily build and unpack Python packages using `setup.py`. It's simple, fast, and built with [Click](https://click.palletsprojects.com/).

## 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
```
