Files
iLSP/pyproject.toml
Henrik Jess Nielsen 6385e159ff
Some checks failed
Build and Deploy iLSP / test (push) Failing after 12s
Build and Deploy iLSP / build-and-deploy (push) Has been skipped
fix: replace asyncio subprocess proxy with thread-based Popen proxy
asyncio subprocess PIPE unreliable for long-lived stdio bridging. Use Popen + threads instead. Also fix smoke_test.sh stdin handling.
2026-05-10 13:02:52 +02:00

36 lines
708 B
TOML

[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"]