-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (47 loc) · 1.57 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
59
[project]
name = "robotframework-sysrepolibrary"
version = "0.4.1"
description = "A testing library for Robot Framework that utilizes the Sysrepo tool internally"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.6.0"
license = { file = "LICENSE" }
keywords = ["sysrepo", "robot", "robotframework", "networking", "linux", "testing"]
authors = [
{ name = "Juraj Vijtiuk", email = "[email protected]" },
{ name = "Andrej Gardijan", email = "[email protected]" }
]
maintainers = [
{ name = "Juraj Vijtiuk", email = "[email protected]" },
{ name = "Andrej Gardijan", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Networking"
]
dependencies = [
"robotframework",
"sysrepo",
"xmltodict"
]
[project.optional-dependencies]
docs = [
"sphinx",
"myst-parser",
]
tests = [
"tox"
]
[project.urls]
"Homepage" = "https://github.com/telekom/sysrepo-library-robot-framework"
"Bug Reports" = "https://github.com/telekom/sysrepo-library-robot-framework/issues"
"Source" = "https://github.com/telekom/sysrepo-library-robot-framework"
[build-system]
requires = ["setuptools>=42.0.0", "wheel"]
build-backend = "setuptools.build_meta"