Metadata-Version: 2.1
Name: create-jira-issue
Version: 0.1.5
Summary: CLI app to create issues in Jira from console
Home-page: https://github.com/44dw/create_jira_issue
License: MIT
Author: Dmitrii Akhmetshin
Author-email: elevation1987@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: PyYAML (>=5.4.1,<6.0.0)
Requires-Dist: argparse (>=1.4.0,<2.0.0)
Requires-Dist: requests (>=2.25.1,<3.0.0)
Requires-Dist: url-normalize (>=1.4.3,<2.0.0)
Requires-Dist: urllib3 (>=1.26.5,<2.0.0)
Project-URL: Repository, https://github.com/44dw/create_jira_issue
Description-Content-Type: text/markdown

# create_jira_issue

##Description
This command line app will help you to create issues from console
##Usage
```shell
cjiss -s "Your issue summary" -d "your issue description" -n "./settings.yml" --sprint
```
##Arguments
_s_ - [MANDATORY] issue summary

_d_ - issue description

_n_ - path to your issue settings in yaml (see below). If not provided, file with name "settings.yml" will be looked in
the current directory

_sprint_ - issue will be added to current sprint.

##Settings
```yaml
# fill this to make the script work

# your jira url
jira_url: https://your.jira.url.com
# login in jira
login: your_login
# pass in jira
password: your_pass
# project you work in
project: PROJECT
# jira issue type (epic, issue, etc) id
# 3 stands for issue
issue_type: 3
# default priority id
priority_id: 4
# default assignee
assignee: assignee_login
# default assignee
reporter: your_login
# your jira board id
board_id: 20801
# labels to add
labels:
  - new
```
