-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
37 lines (33 loc) · 1 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
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "sansio-lsp-client"
version = "0.12.0"
description = """
An implementation of the client side of the LSP protocol, useful for \
embedding easily in your editor.\
"""
authors = ["Purple Myst <PurpleMyst@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/PurpleMyst/sansio-lsp-client"
keywords = ["sansio", "languageserver"]
include = ["sansio_lsp_client/py.typed"]
[tool.poetry.dependencies]
python = ">=3.10"
dataclasses = { version = "^0.8", python = ">=3.6,<3.7" }
pydantic = "^1.10.14"
black = "^24.4.2"
mypy = "^1.10.0"
[tool.poetry.group.dev.dependencies]
python-lsp-server = "^1.9.0"
pytest = "^7.4.4"
pytest-cov = "^4.1.0"
lxml = "^5.1.0"
pyflakes = "^3.2.0"
[tool.black]
line-length = 88
target-version = ["py310"]
# TODO: what's the purpose of specifying exclude here?
exclude = 'build/|buck-out/|dist/|_build/|\.git/|\.hg/|\.mypy_cache/|\.tox/|\.venv/|/playground.py'