Metadata-Version: 2.1
Name: autopr-cli
Version: 0.2.1
Summary: A CLI tool to automate PR creation and listing.
Home-page: https://github.com/leaopedro/autopr
Author: Your Name
Author-email: your.email@example.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

# AutoPR

A CLI tool for creating PRs using AI.

## Installation

You can install AutoPR using pip:

```sh
pip install autopr
```

## Usage
To create a new PR:
```sh
autopr create --title "PR Title"
```


## To publish a new version:

After changes are done, run the following:

1: Build the package:
```sh
python setup.py sdist bdist_wheel
```

2: upload:

```sh
twine upload dist/*
```
