Metadata-Version: 2.1
Name: sprint-velocity
Version: 1.0.2
Summary: Generating a Matplotlib plot to see the scrum velocity for a sprint.
Home-page: https://github.com/FelixTheC/jira_srcum_velocity
License: MIT
Author: FelixTheC
Author-email: fberndt87@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Environment :: Console
Classifier: Framework :: Matplotlib
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: matplotlib
Requires-Dist: pandas
Requires-Dist: pendulum
Requires-Dist: requests
Requires-Dist: strongtyping
Requires-Dist: typer[all]
Description-Content-Type: text/markdown

![Python application](https://github.com/FelixTheC/jira_srcum_velocity/workflows/Python%20application/badge.svg)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)

# Jira Sprint Velocity
- generate a Sprint Velocity Matplotlib Graph

## How To Use
```shell
$ jira_statistics --help

```

## Used Jira Filter
- to get all issues for generating the Velocity we're using following Statement
```shell
project = <project> and issuetype in subTaskIssueTypes() AND Sprint = <sprint_id> AND (resolution = unresolved or resolved >= <sprint_start_date>)
```

## Authentication
- the rest api from jira uses a Bearer Token, this Token can be created directly in Jira under Profile


## Example Result
![SprintVelocity](images/test.png)

