-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 1.26 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
[project]
name = "robotframework-camunda"
version = "2.0.3"
description = "Keywords for camunda rest api, leading open source workflow engine."
readme = "README.md"
requires-python = ">=3.10"
license-files = ["LICENSE"]
authors = [{ name = "Markus", email = "markus.i.sverige@googlemail.com" }]
keywords = ["robotframework", "camunda", "automation", "testing", "bpm"]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Framework :: Robot Framework :: Library",
]
dependencies = [
"robotframework>=3.2",
"generic-camunda-client>=7.15.0",
"requests",
"requests_toolbelt",
"url-normalize",
]
[tool.setuptools.packages.find]
include = ["CamundaLibrary"]
exclude = ["tests*", "libdoc*"]
[project.urls]
Homepage = "https://github.com/MarketSquare/robotframework-camunda"
Repository = "https://github.com/MarketSquare/robotframework-camunda.git"
[dependency-groups]
ci = ["robotcode-runner>=2.2.0"]
dev = ["robotcode>=2.2.0", "robotframework-robocop>=7.2.0"]