-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.53 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
# Read https://setuptools.pypa.io/en/latest/userguide/datafiles.html
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "multilspy"
version = "0.0.14"
authors = [
]
description = "A language-agnostic LSP client in Python, with a library interface. Intended to be used to build applications around language servers. Currently multilspy supports language servers for Python, Rust, Java, Go, JavaScript, Ruby, C# and Dart. Originally appeared as part of Monitor-Guided Decoding (https://github.com/microsoft/monitors4codegen)"
readme = "README.md"
requires-python = ">=3.8, <4.0"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
"Topic :: Software Development",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
"Programming Language :: C#",
"Programming Language :: Java",
"Programming Language :: Python",
"Programming Language :: Rust",
"Programming Language :: JavaScript",
"Programming Language :: Go",
"Programming Language :: Ruby",
]
dependencies = [
"jedi-language-server==0.41.1",
"requests==2.32.3",
"typing-extensions>=4.2.0",
"psutil (>=7.0.0,<8.0.0)"
]
[project.urls]
"Homepage" = "https://github.com/microsoft/multilspy"
"Bug Tracker" = "https://github.com/microsoft/multilspy/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]