-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.5 KB
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
46
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "lsprotocol"
description = 'Python types for Language Server Protocol.'
version = "2025.0.0"
authors = [
{ name = "Microsoft Corporation", email = "lsprotocol-help@microsoft.com" },
]
license = { file = "LICENSE" }
readme = { "file" = "README.md", "content-type" = "text/markdown" }
requires-python = ">=3.8"
maintainers = [
{ name = "Brett Cannon", email = "brett@python.org" },
{ name = "Karthik Nadig", email = "kanadig@microsoft.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["attrs>=21.3.0", "cattrs!=23.2.1"]
[project.urls]
Issues = "https://github.com/microsoft/lsprotocol/issues"
Source = "https://github.com/microsoft/lsprotocol"
[tool.flit.sdist]
include = ["lsprotocol/", "README.md", "LICENSE"]
exclude = ["lsprotocol/__pycache__/", "requirements.in", "requirements.txt"]
[tool.mypy]
files = "lsprotocol"
show_error_codes = true
strict = true
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
enable_recursive_aliases = true