forked from jolly-good-toolbelt/jiratools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 1.03 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = "jiratools"
version = "2.0.2"
description = "Simple helpers to interface to JIRA from an API or command line."
authors = ["Brad Brown <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/jolly-good-toolbelt/jiratools/"
documentation = "https://jolly-good-toolbelt.github.io/jiratools/"
repository = "https://github.com/jolly-good-toolbelt/jiratools/"
[tool.poetry.dependencies]
python = "^3.6"
jira = "^2.0"
[tool.poetry.dev-dependencies]
pre-commit = "^1.17"
sphinx = "^2.0"
sphinx-rtd-theme = "^0.4.3"
ghp-import = "^0.5.5"
tomlkit = "^0.5.3"
sphinx-autodoc-typehints = "^1.6"
[tool.poetry.scripts]
jira-make-linked-issue = "jiratools:_create_test_jira_from"
jira-add-comment = "jiratools:_cli_add_comment"
jira-example-config = "jiratools:_example_config_install"
jira-search-issues = "jiratools:_cli_search"
jira-link-issues = "jiratools:cli_jira_link"
jira-update-assignee = "jiratools:_change_jira_assignee"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"