summaryrefslogtreecommitdiffstats
path: root/packages/python/pyproject.toml
blob: 999d175b64d583b8672e153cd87ec83a27d6d605 (plain)
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
47
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "lsprotocol"
description = 'Python implementation of the Language Server Protocol.'
version = "2023.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.7"
maintainers = [
  { name = "Brett Cannon", email = "brett@python.org" },
  { name = "Karthik Nadig", email = "kanadig@microsoft.com" },
]
classifiers = [
  "Development Status :: 5 - Production/Stable",
  "License :: OSI Approved :: MIT License",
  "Programming Language :: Python",
  "Programming Language :: Python :: 3.7",
  "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"]

[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