-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (55 loc) · 1.34 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "camundactl"
version = "0.1.0a4"
description = "A Camunda cli that interacts with the rest api"
authors = ["Jens Blawatt <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jblawatt/camundactl"
repository = "https://github.com/jblawatt/camundactl"
documentation = "https://github.com/jblawatt/camundactl"
keywords = ["camunda", "click", "cli"]
[tool.poetry.dependencies]
python = "^3.8"
PyYAML = "^5.4.1"
requests = "^2.26.0"
tabulate = "^0.8.9"
types-requests = "^2.25.6"
Jinja2 = "^3.0.1"
jsonpath-ng = "^1.5.3"
click = "^8.0.1"
toolz = "^0.11.1"
jsonschema = "^3.2.0"
rainbow_logging_handler = "^2.2.2"
filetypes = "^0.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
isort = "^5.9.3"
black = "^21.7b0"
mypy = "^0.910"
flake8 = "^3.9.2"
pudb = "^2021.1"
pyinstaller = "^4.5.1"
mkdocs = "^1.2.2"
mkdocstrings = "^0.16.1"
mkdocs-gen-files = "^0.3.3"
plantuml-markdown = "^3.4.3"
mkdocs-rokubun = "^5.5.12"
mkdocs-gitbook = "^0.0.1"
responses = "^0.14.0"
pytest-cov = "^2.12.1"
coverage = "^5.5"
ipdb = "^0.13.9"
mkdocs-click = "^0.4.0"
tox = "^3.24.4"
tox-pyenv = "^1.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
"cctl" = "camundactl.__main__:_main"
[tool.pytest.ini_options]
addopts = "-s"
testpaths = [
"camundactl",
]