Metadata-Version: 2.1
Name: gitstats-forked
Version: 0.1.0
Summary: Git history statistics generator (Forked from KaivnD/gitstats for support python3)
Home-page: https://github.com/eggplants/gitstats
Author: eggplants
Author-email: w10776e8w@yahoo.co.jp
License: GPL-3.0
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE.txt

# gitstats for python 3

[![PyPI](
  https://img.shields.io/pypi/v/gitstats-forked?color=blue
  )](
  https://pypi.org/project/gitstats-forked/
) [![ghcr](
  https://ghcr-badge.herokuapp.com/eggplants/gitstats/size
  )](
  https://github.com/eggplants/gitstats/pkgs/container/gitstats
) [![Maintainability](
  https://api.codeclimate.com/v1/badges/845cc591d0e88120e394/maintainability
  )](
  https://codeclimate.com/github/eggplants/gitstats/maintainability
) [![pre-commit.ci status](
  https://results.pre-commit.ci/badge/github/eggplants/gitstats/master.svg
  )](
  https://results.pre-commit.ci/latest/github/eggplants/gitstats/master
)

- Git history statistics generator
- Forked from [KaivnD/gitstats](https://github.com/KaivnD/gitstats) for support python3

## Install

```bash
pip install git+https://github.com/eggplants/gitstats
# OR
pip install gitstats-forked
```

## Usage

```shellsession
$ gitstats -h
usage: gitstats [-h] [-c K=V] [-V] gitpath [gitpath ...] outputpath

Git history statistics generator

positional arguments:
  gitpath               repo path to look up
  outputpath            dir path to output result

options:
  -h, --help            show this help message and exit
  -c K=V, --config K=V  override configuration value (default: None)
  -V, --version         show program's version number and exit

Default config values:
  - max_domains=10
  - max_ext_length=10
  - style='gitstats.css'
  - max_authors=20
  - authors_top=5
  - commit_begin=''
  - commit_end='HEAD'
  - linear_linestats=1
  - project_name=''
  - processes=8
  - start_date=''

Please see the manual page for more details.
```

## For Example

``` bash
gitstats -c start_date=2021-07-14 <gitdir> <outputdir>
```


