-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 876 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 876 Bytes
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
[build-system]
requires = [
"setuptools>=61.0.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "robotframework-mbt"
version = "0.13.0"
description = "Model-Based Testing in Robot framework with test case generation"
readme = "README.md"
authors = [{ name = "Johan Foederer", email = "github@famfoe.nl" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
keywords = ["robotframework", "robot", "mbt", "bdd", "testing"]
dependencies = [
"robotframework >= 7.3",
]
requires-python = ">=3.10"
[tool.setuptools.packages.find]
include = ["robotmbt*"]
[project.urls]
Homepage = "https://github.com/JFoederer/robotframeworkMBT"
[project.optional-dependencies]
full = ["networkx", "bokeh", "grandalf", "jsonpickle"]