Files
iLSP/pyproject.toml

36 lines
708 B
TOML
Raw Normal View History

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ilsp"
version = "0.1.0"
description = "i80 LSP server — extends Python and Bicep LSPs with LRU/i80 knowledge"
requires-python = ">=3.11"
dependencies = [
"python-lsp-server[all]>=1.12",
"aiohttp>=3.9",
"lsprotocol>=2023.0",
"pygls>=1.3",
]
[project.entry-points."pylsp"]
ilsp = "ilsp.python_lsp.plugin"
[project.scripts]
ilsp = "ilsp.server:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["ilsp*"]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]