-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.18 KB
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
[tool.poetry]
name = "avikom-camunda-client"
version = "0.10.0"
description = "A python client for Camunda to process external service tasks."
authors = ["Alexander Neumann <aleneum@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/OpenAvikom/camunda-client"
homepage = "https://www.avikom.app"
keywords = ["camunda", "client", "service task", "external task", "async"]
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
packages = [
{ include = "camunda" },
]
[tool.poetry.dependencies]
python = ">=3.7.2,<3.11"
aiohttp = "^3.7.4"
[tool.poetry.dev-dependencies]
poetry = "^1.4.0"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
pytest-asyncio = "^0.15.1"
pytest-mock = "^3.6.1"
black = "^23.1.0"
pylint = "^2.11.1"
mypy = "^0.910"
[tool.poetry.group.dev.dependencies]
pylint = "^2.17.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"