-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
31 lines (26 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
[tool.poetry]
name = "jgt_common"
version = "1.1.1"
description = "A library for helper functions across Jolly Good Toolbelt designed for larger consumption"
authors = ["Doug Philips <[email protected]>", "Lewis Franklin <[email protected]>", "Ryan Casperson <[email protected]>", "Brad Brown <[email protected]>", "Shawn Dutton <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://jolly-good-toolbelt.github.io/jgt_common/"
documentation = "https://jolly-good-toolbelt.github.io/jgt_common/"
repository = "https://github.com/jolly-good-toolbelt/jgt_common"
[tool.poetry.dependencies]
python = "^3.6"
requests = "*"
wrapt = "*"
[tool.poetry.dev-dependencies]
requests-mock = "^1.6"
jgt_tools = "^0.4.0"
[tool.poetry.scripts]
uuid-replacer = 'jgt_common.uuid_replacer:main'
[tool.poetry.plugins."tag_to_url"]
JIRA = "jgt_common.tag_to_url:JIRA"
SNOW = "jgt_common.tag_to_url:SNOW"
VersionOne = "jgt_common.tag_to_url:VersionOne"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"