Metadata-Version: 2.4
Name: git-statistics
Version: 0.1.1
Summary: Simple git commit statistics CLI tool
Author: Wicayonima
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# git-stat

Simple CLI tool to analyze git commit statistics.

## Features

* Commit count summary
* Filter by time and author
* Exclude merge commits
* Commit type classification (feat, fix, chore, etc)
* Optional JSON output

## Installation

```bash
pip install git-statistics
```

## Usage

```bash
git-stat
git-stat --since 7d
git-stat --author "Your Name"
git-stat --type-only
git-stat --top-messages
git-stat --json
```

## Notes

* Must be executed inside a git repository
* Requires Git and Python >= 3.9
