-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 952 Bytes
/
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
[project]
name = "robotframework-construct"
version = "0.1.4"
description = "Infrastructure to use construct Structs in robotframework"
authors = [
{name = "Franz Haas", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.10.0"
dependencies = [
"robotframework>=7.1",
"construct==2.10.69",
]
license = { text = "Apache-2.0" }
keywords = ["robotframework"]
[project.urls]
Documentation = "https://marketsquare.github.io/robotframework-construct"
Repository = "https://github.com/MarketSquare/robotframework-construct"
[project.optional-dependencies]
test = [
"cosmic-ray>=8.3.15",
"pymongo>=4.9.1",
"ruff>=0.7.2",
"pytest>=8.3.3",
]
breakout = ["ruamel_yaml>=0.18.6",
"xonsh>=0.18.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"ipython>=8.29.0",
"radon>=6.0.1",
"ruff>=0.7.2",
"ruamel_yaml>=0.18.6"
]