-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (48 loc) · 1.11 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.7.1"]
[tool.poetry]
authors = ["jmd <[email protected]>"]
classifiers = [
"Programming Language :: Python :: 3",
]
description = "A language server for Bioware's nwscript and more!"
homepage = "https://github.com/jd28/arclight-py"
keywords = [
"nwscript",
"Neverwinter Nights",
"completion",
"lsp",
"language-server-protocol",
]
name = "arclight"
readme = "README.md"
repository = "https://github.com/jd28/arclight-py"
version = "0.15.dev0"
include = [
"arclight/data/2dasource.zip",
]
[tool.poetry.dependencies]
cattrs = ">=23.1.2"
docstring-to-markdown = "0.*"
lsprotocol = ">=2022.0.0a9"
pillow = "^11.0"
prettytable = "^3.11"
pygls = "^1.2.1"
python = "^3.10"
openpyxl = "^3.1"
rollnw = ">=0.42.dev0"
[tool.poetry.dev-dependencies]
PyHamcrest = "*"
mypy = "*"
nox = "*"
pre-commit = "*"
pytest = "*"
pytest-cov = "*"
python-lsp-jsonrpc = "*"
ruff = "*"
toml-sort = "*"
[tool.poetry.scripts]
2dilate = 'arclight.twodilate.main:main'
nwscript-lint = 'arclight.nwscript_lint.main:main'
nwscriptd = 'arclight.nwscriptd.cli:cli'