Metadata-Version: 2.4
Name: amend-commit-ai
Version: 0.1
Summary: Amend git commits with AI conversation transcripts.
Author: Tanner Hobson
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/player1537/amend-commit-ai
Project-URL: Changelog, https://github.com/player1537/amend-commit-ai/releases
Project-URL: Issues, https://github.com/player1537/amend-commit-ai/issues
Project-URL: CI, https://github.com/player1537/amend-commit-ai/actions
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: mdformat
Requires-Dist: pyperclip
Requires-Dist: questionary
Requires-Dist: zstandard
Dynamic: license-file

# amend-commit-ai

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

null

## Installation

Install this library using `pip`:
```bash
pip install amend-commit-ai
```
## Usage

Usage instructions go here.

## Development

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