-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (51 loc) · 1.38 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
[project]
name = "robotframework-construct"
description = "Infrastructure to use construct Structs in robotframework"
authors = [
{name = "Franz Haas", email = "[email protected]"},
]
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10.0"
dependencies = [
"robotframework>=7.1",
"construct==2.10.69",
]
license = "Apache-2.0"
keywords = ["robotframework"]
[project.urls]
Documentation = "https://marketsquare.github.io/robotframework-construct"
Repository = "https://github.com/MarketSquare/robotframework-construct"
Release_Notes = "https://marketsquare.github.io/robotframework-construct/release_notes.md"
[project.optional-dependencies]
test = [
"cosmic-ray>=8.3.15",
"pymongo>=4.9.1",
"ruff>=0.7.2",
"pytest>=8.3.3",
"stdf-tamer[robotframework]>=1.0.44"
]
nfc = ["pyserial"]
breakout = [
"ruamel_yaml>=0.18.6",
"xonsh>=0.18.4",
]
[tool.uv]
dev-dependencies = [
"ipython>=8.29.0",
"radon>=6.0.1",
"ruff>=0.7.2",
"ruamel_yaml>=0.18.6",
"mypy>=1.13.0",
"xonsh>=0.18.4",
]
[tool.hatch.version]
source = "versioningit"
default-version = "0.0.0+unknown"
[tool.hatch.version.format]
distance = "{next_version}.dev{distance}+{vcs}{rev}"
dirty = "{version}+dirty"
distance-dirty = "{next_version}.dev{distance}+{vcs}{rev}.dirty"
[build-system]
requires = ["hatchling", "versioningit"]
build-backend = "hatchling.build"