forked from camunda-community-hub/pyzeebe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (62 loc) · 1.56 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
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "pyzeebe"
version = "3.0.4"
description = "Zeebe client api"
authors = ["Jonatan Martens <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/camunda-community-hub/pyzeebe"
repository = "https://github.com/camunda-community-hub/pyzeebe"
documentation = "https://pyzeebe.readthedocs.io/en/latest"
keywords = ["zeebe", "workflow", "workflow-engine"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
packages = [
{ include = "pyzeebe" },
]
[tool.poetry.dependencies]
python = "^3.6"
oauthlib = "~=3.1.0"
requests-oauthlib = "~=1.3.0"
zeebe-grpc = "^1.2.0"
aiofiles = ">=0.7,<0.9"
[tool.poetry.dev-dependencies]
autopep8 = "~=1.6.0"
pylint = "~=2.12.0"
coverage = "~=6.2"
pytest = "~=6.2.2"
pytest-grpc = "~=0.8.0"
mypy = "~=0.930"
coveralls = "~=3.3.1"
importlib-metadata = "~=4.8.3"
sphinx = "~=4.3.2"
sphinx-rtd-theme = "*"
pytest-mock = "*"
pytest-asyncio = "~=0.16.0"
asyncmock = "~=0.4.2"
bump2version = "~=1.0.1"
responses = "~=0.16.0"
black = {version = "^21.12b0", python = ">=3.6.2,<4.0"}
[[tool.mypy.overrides]]
module = [
"grpc",
"oauthlib",
"requests_oauthlib",
"zeebe_grpc.gateway_pb2",
"zeebe_grpc.gateway_pb2_grpc",
"requests",
"aiofiles"
]
ignore_missing_imports = true
[tool.pylint.master]
disable = ["C0114", "C0115", "C0116"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"