-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (44 loc) · 1.33 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
[tool.poetry]
name = "hydra-lsp"
version = "0.1.4"
description = "Language server for Hydra YAML config files"
authors = [
"Andrii Zhuravchak <[email protected]>",
"Kostiantyn Liepieshov <[email protected]>",
]
readme = "README.md"
keywords = ["ls", "language-server", "yaml", "hydra"]
homepage = "https://github.com/Retsediv/hydra-lsp"
repository = "https://github.com/Retsediv/hydra-lsp"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
mypy = "^1.7.0"
isort = "^5.12.0"
[tool.project.urls]
"Homepage" = "https://github.com/Retsediv/hydra-lsp"
"Source" = "https://github.com/Retsediv/hydra-lsp"
[tool.poetry.dependencies]
python = "^3.10"
pygls = "^1.1.1"
lsprotocol = "^2023.0.0b1"
ruamel-yaml = "^0.17.40"
pygtrie = "^2.5.0"
intervaltree = "^3.1.0"
importlib-metadata = "^6.8.0"
[tool.poetry.scripts]
hydra-lsp = "hydra_lsp.__main__:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py310', 'py311']
[tool.isort]
multi_line_output = 3
line_length = 88
include_trailing_comma = true
# TODO: remove this warning filter when pygls will be updated and our parser will be using outdated API
[tool.pytest.ini_options]
filterwarnings = ["ignore::PendingDeprecationWarning"]