-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
141 lines (126 loc) · 2.5 KB
/
pyproject.toml
File metadata and controls
141 lines (126 loc) · 2.5 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"
[tool.libdoc2testbench]
# output_path = "dump1.zip"
attachment = false
# created_datatypes = "ALL"
# documentation_format = "HTML"
# library_name_extension = "[Robot-Library]"
library_root = "Robot"
# repository_id ="itb-RF"
# resource_name_extension = "[Robot-Resource]"
resource_root = "Robot"
# specification_format = "RAW"
excluded_paths = [
# "**/test_libraries",
"**/libdoc2testbench"
]
[project]
name = "robotframework-libdoc2testbench"
authors = [{name = "imbus AG", email = "support@imbus.de"}]
description = "Robot Framework Libdoc Extension that generates imbus TestBench Library import formats."
requires-python = ">= 3.9"
readme = "README.md"
license = {text = "Apache 2.0 License"}
dynamic = ["version"]
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Acceptance",
"Framework :: Robot Framework"
]
dependencies = [
"robotframework >= 5.0",
"xsdata",
"tomli; python_version < '3.11'",
]
[project.urls]
Homepage = "https://github.com/imbus/robotframework-libdoc2testbench"
[project.scripts]
libdoc2testbench = "libdoc2testbench.__main__:run"
Libdoc2TestBench = "libdoc2testbench.__main__:run"
[tool.flit.module]
name = "libdoc2testbench"
[tool.flit.sdist]
include = [
"libdoc2testbench/**/*.json",
]
[project.optional-dependencies]
dev = [
"build",
"check-manifest",
"xsdata[cli]",
"flit",
"invoke",
"mypy",
"pylint",
"pytest",
"pytest-cov",
"pytest-spec",
"ruff",
]
[tool.mypy]
python_version = "3.9"
ignore_missing_imports = true
no_implicit_optional = true
strict_optional = true
warn_return_any = true
warn_no_return = true
warn_unreachable = true
pretty = true
exclude = [
"test_libraries/",
"libdoc2testbench/project_dump_model/"
]
[tool.ruff]
line-length = 100
unfixable = [
"UP007"
]
exclude = [
"__pycache__",
"config.py",
"model.py",
"tests",
"itb_project_export.py"
]
ignore = [
"T201",
"N806",
"B904",
"B008", # Todo: fix later
"PLR0913", # Todo: fix later
]
target-version = "py39"
select = [
"E",
"F",
"W",
"C90",
"I",
"N",
"B",
"PYI",
"PL",
"PTH",
"UP",
"A",
"C4",
"DTZ",
"ISC",
"ICN",
"INP",
"PIE",
"T20",
"PYI",
"PT",
"RSE",
"RET",
"SIM",
"RUF"
]