-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 1.14 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
[tool.poetry]
name = "super-glass-lsp"
version = "0.7.0"
description = "Generic LSP to parse the output of CLI tools, linters, formatters, etc"
authors = ["Thomas Buckley-Houston <tom@tombh.co.uk>"]
license = "MIT"
readme = "README.md"
packages = [{include = "super_glass_lsp"}]
[tool.poetry.dependencies]
python = ">=3.7,<3.12" # TODO: Is Python 3.8 ok?
parse = "^1.19.0"
pygls = "^0.13.1" # TODO: upgrade to v1
pyyaml = "^6.0"
pydantic = "1.10.7" # TODO: Remove when upgrading to Pygls v1
mergedeep = "^1.3.4"
single-source = "^0.3.0"
psutil = "^5.9.3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
flake8 = "^5.0.4"
mypy = "^0.982"
black = "^22.8.0"
pytest-mock = "^3.10.0"
pytest-lsp = "^0.1.2"
types-pyyaml = "^6.0.12"
pytest-timeout = "^2.1.0"
pytest-xdist = "^3.0.2"
pytest-rerunfailures = "^12.0"
[tool.poetry.scripts]
super-glass-lsp = "super_glass_lsp.main:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
exclude = [
"super-glass-lsp/main.py"
]
[tool.pylsp-mypy]
enabled = true
live_mode = false
dmypy = true
strict = false
[http-basic]
[http-basic.my-pypi]
username = "tombh"