Metadata-Version: 2.1
Name: pybunch
Version: 1.0.15
Summary: A python utility to pack python projects into a single python file
Author-email: Yonatan Karidi <ykaridi@gmail.com>
Project-URL: Homepage, https://github.com/ykaridi/pybunch
Project-URL: Issues, https://github.com/ykaridi/pybunch/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: argparse>=1.0.0

# pybunch

A simple python utility to pack a python project into a single file.

## Usage
```bash
$ python -m pybunch --root example --entrypoint main -sp example -so -o packed.py
$ python packed.py
21
```
