Metadata-Version: 2.1
Name: jira_agile_toolbox
Version: 0.0.6
Summary: Extends standard jira package with agile specific tooling for metrics and administration
Home-page: https://github.com/studioj/jira-agile-toolbox
Author: Jef Neefs
License: MIT
Description: # jira_agile_toolbox
        
        ![python package workflow](https://github.com/studioj/jira-agile-toolbox/actions/workflows/python-publish.yml/badge.svg)
        ![python package workflow](https://github.com/studioj/jira-agile-toolbox/actions/workflows/python-package.yml/badge.svg)
        
        
        A python package which extends the jira package with agile related functionality
        
        For more info about the jira package
        
        - PyPi: https://pypi.org/project/jira/
        - rtd:  https://jira.readthedocs.io/en/latest/
        
        ## Installation
        ```bash
        pip install jira-agile-toolbox
        ```
        
        ## Features
        
        - ### Getting story points from an epic
        
        Example:
        ```python
        >>> from jira_agile_toolbox import JiraAgileToolBox
        >>> from jira import JIRA
        >>> my_jira_client = JIRA("https://my-jira-server.com", basicauth("MYUSERNAME","MYPASSWORD")
        >>> tb = JiraAgileToolBox(my_jira_client)
        >>> tb.get_storypoints_from_epic("PROJ-001")
        {'total': 100, "Reported": 50, "Closed": 50}
        
        
        
        
Keywords: api,atlassian,jira,rest,web,agile,scrum,kanban
Platform: unix
Platform: linux
Platform: osx
Platform: cygwin
Platform: win32
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Utilities
Classifier: Topic :: Office/Business
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: test
