-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (39 loc) · 953 Bytes
/
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
[build-system]
requires = ["poetry-core>=1.7.1"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "nwscript-language-server"
version = "0.6.dev0"
description = "A language server for Bioware's nwscript"
authors = ["jmd <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/jd28/nwscript-lsp"
repository = "https://github.com/jd28/nwscript-lsp"
keywords = [
"nwscript",
"completion",
"lsp",
"language-server-protocol"
]
classifiers = [
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = "^3.10"
rollnw = "^0.23.dev0"
pygls = "^1.2.1"
cattrs = ">=23.1.2"
docstring-to-markdown = "0.*"
lsprotocol = ">=2022.0.0a9"
[tool.poetry.dev-dependencies]
PyHamcrest = "*"
mypy = "*"
nox = "*"
pre-commit = "*"
pytest = "*"
pytest-cov = "*"
python-lsp-jsonrpc = "*"
ruff = "*"
toml-sort = "*"
[tool.poetry.scripts]
nwscript-language-server = 'nwscript_language_server.cli:cli'