-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpyproject.toml
121 lines (103 loc) · 2.85 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
[tool.poetry]
name = "robocorp-code"
version = "1.22.3"
description = "Robocorp Code: Visual Studio Code Extension for Software Robot Development"
authors = [
"Fabio Zadrozny <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/robocorp/robotframework-lsp"
license = "Apache-2.0"
packages = [
{include = "robocorp_code", from = "src"},
{include = "robocorp_code_debug_adapter", from = "src"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Text Editors",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
"Topic :: Software Development :: Debuggers",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
tomli = { version = "^2.0.1", python = "<3.11" }
msgspec = "^0.18"
pyyaml = "^6"
playwright = "<2"
pillow = "^10.2.0"
pywin32 = { version = ">=300,<304", platform = "win32", python = "!=3.8.1" }
psutil = "^5.9.0"
comtypes = "^1.2"
pyscreeze = "^0.1.30"
mss = "^9.0.1"
java-access-bridge-wrapper = "^1.2.0"
ruff = "^0.1.14"
[tool.poetry.group.dev.dependencies]
robocorp-python-ls-core = {path = "../robocorp-python-ls-core/", develop = true}
fire = "*"
robotframework = "5.0.1"
robotremoteserver = "*"
robocorp-actions = "^0.2.0" # Just needed for testing.
sema4ai-actions = "^0.3.1" # Just needed for testing.
numpy = "<2"
black = "^24.3.0"
ruff = "^0.1.14"
mypy = "^1.1.1"
isort = { version = "^5.12.0", python = "^3.8" }
invoke = "^2.0"
tomlkit = "^0.11.8"
semver = "^3.0.0"
requests = "*"
truststore = "0.8.0"
mock = "*"
pytest = "*"
pytest-regressions = "1.0.6"
pytest-xdist = "*"
pytest-timeout = "*"
types-requests = "*"
types-invoke = "^2.0"
types-psutil = "^5.9"
types-mock = "*"
types-PyYAML = "*"
robocorp-log-pytest = "*"
types-docutils = "*"
types-Pillow = "^10.2.0"
types-pywin32 = "304.0.0.6"
[tool.mypy]
mypy_path = "src:tests"
[tool.isort]
profile = "black"
[tool.black]
exclude = "vendored"
[tool.ruff]
ignore = [
"E501", # Line-len.
"F541", # f-string without placeholders.
"E731", # Use 'def' instead of lambda.
]
[[tool.mypy.overrides]]
module = "setuptools.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pytest_timeout.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pytest_timeout.*"
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.robocorp.log]
log_filter_rules = [
{name = "robocorp_code", kind = "full_log"},
{name = "robocorp_ls_core", kind = "full_log"},
]