-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (56 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (56 loc) · 1.7 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
[tool.poetry]
name = "robocorp-python-ls-core"
version = "0.0.1"
description = "Robocorp python language server core components"
authors = [
"Fabio Zadrozny <fabio@robocorp.com>",
]
readme = "README.md"
repository = "https://github.com/robocorp/robotframework-lsp"
license = "Apache-2.0"
packages = [
{include = "robocorp_ls_core", 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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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.9,<3.11"
tomli = { version = "^2.0.1", python = "<3.11" }
[tool.mypy]
mypy_path = "src:tests"
[tool.isort]
profile = "black"
[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"