Metadata-Version: 2.4
Name: gitkpi
Version: 1.1.0
Summary: A CLI tool for git KPI statistics
Author: 
License: MIT
Keywords: git,statistics,cli
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# gitkpi

A CLI tool for git KPI statistics

## Installation

```bash
pip install gitkpi-cli
```

## Usage

### Single author statistics

```bash
gitkpi <author> [options]
```

Options:
- `-r, --repo PATH` Repository path (default: current directory)
- `-b, --branch BRANCH` Branch to analyze (default: --all)
- `-s, --since DATE` Since date (e.g., '2024-01-01' or '30 days ago')

### Leaderboard (all authors ranked)

```bash
gitkpi -l [options]
# or
gitkpi --leaderboard [options]
```

## Examples

```bash
gitkpi john
gitkpi "John Doe"
gitkpi john -r /path/to/repo
gitkpi john -r . -b main -s "2026-01-01"
gitkpi -l
gitkpi -l -r /path/to/repo
```

## License

MIT
