-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.18 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
[build-system]
requires = [
"setuptools>=61",
"wheel",
"setuptools_scm>=6.2",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "DeviceLibrary/_version.py"
[project]
name = "robotframework-devicelibrary"
description = "Robot Framework library for interfacing with Devices"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["testing"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
dependencies = [
"robotframework >= 6.0.0, < 8.0.0",
"unidecode >= 1.3.6, < 2.0.0",
"device-test-core @ git+https://github.com/reubenmiller/device-test-core.git@1.11.0",
]
[project.optional-dependencies]
all = [
"robotframework-devicelibrary[ssh]",
"robotframework-devicelibrary[docker]",
"robotframework-devicelibrary[local]",
]
ssh = [
"device-test-core[ssh] @ git+https://github.com/reubenmiller/device-test-core.git@1.11.0",
]
local = [
"device-test-core[local] @ git+https://github.com/reubenmiller/device-test-core.git@1.11.0",
]
docker = [
"device-test-core[docker] @ git+https://github.com/reubenmiller/device-test-core.git@1.11.0",
]
test = [
"pytest >= 7.2.0, < 8.0.0",
]