forked from PurpleMyst/sansio-lsp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 1.03 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.10.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.6"
dataclasses = { version = "^0.7", python = ">=3.6,<3.7" }
pydantic = "^1.7.3"
[tool.poetry.dev-dependencies]
mypy = "^0.790.0"
black = "18.9b0"
python-language-server = { extras = ["all"], version = "^0.36.2" }
pytest = "5.4.3"
pytest-cov = "^2.10.1"
lxml = "^4.6.2"
pyflakes = "^2.2.0"
[tool.black]
line-length = 88
target-version = ["py36"]
# TODO: what's the purpose of specifying exclude here?
exclude = 'build/|buck-out/|dist/|_build/|\.git/|\.hg/|\.mypy_cache/|\.tox/|\.venv/|/playground.py'