-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
126 lines (114 loc) · 2.77 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
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "robotframework-seleniumlibrary-translation-fi"
version = "0.1.0"
authors = [
{ name="Tatu Aalto", email="[email protected]" },
]
license = {file = "LICENSE"}
description = "Robot Framework SeleniumLibrary translation to Finnish languege"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Robot Framework :: Library",
"Topic :: Software Development :: Testing :: Acceptance",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
keywords = ["Robot Framework", "SeleniumLibrary"]
dependencies = ["robotframework-seleniumlibrary >= 6.5.0"]
[project.urls]
Homepage = "https://github.com/MarketSquare/robotframework-seleniumlibrary-translation-fi"
Issues = "https://github.com/MarketSquare/robotframework-seleniumlibrary-translation-fi/issues"
Changelog = "https://github.com/MarketSquare/robotframework-seleniumlibrary-translation-fi/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = ["robotframework_seleniumlibrary_translation_fi"]
[tool.setuptools.package-data]
robotframework_seleniumlibrary_translation_fi = ["*.json"]
[tool.semantic_release]
version_toml = [
"pyproject.toml:project.version",
]
version_variables = [
"robotframework_seleniumlibrary_translation_fi/__init__.py:__version__",
]
[tool.black]
target-version = ['py38']
exclude = '''
/(
\.eggs
| \.git
| \.mypy_cache
| \.venv
| _build
| buck-out
| build
| dist
| generated
| wrapper
| browser\.pyi
)/
'''
[tool.ruff]
lint.unfixable = []
exclude = [
"__pycache__",
]
target-version = "py38"
lint.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"
]
[tool.ruff.lint.per-file-ignores]
"tasks.py" = ["T201"]
"utest/*" = ["INP001"]
"atest/*" = ["INP001"]
[tool.pytest.ini_options]
testpaths = ["utest"]
log_format = "%(asctime)s %(levelname)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
[tool.robotidy]
lineseparator = "unix"
configure = [
"NormalizeAssignments:equal_sign_type=space_and_equal_sign",
"NormalizeAssignments:equal_sign_type_variables=space_and_equal_sign",
"NormalizeNewLines:section_lines=1",
"RenameTestCases:enabled=True:capitalize_each_word=True",
"RenameKeywords:enabled=True",
]
[tool.mypy]
exclude = [
"utest/*",
]