-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (78 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
87 lines (78 loc) · 2.05 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[project]
name = "lsp-types"
version = "0.20.0"
description = "Minimal-dependency Python library for Language Server Protocol types"
authors = [{ name = "Mazyad Alabduljaleel", email = "mazjaleel@gmail.com" }]
requires-python = ">=3.12"
readme = "README.md"
license = "MIT"
dependencies = [
"tomli-w>=1.0.0", # TOML writing support for Pyrefly and ty config
]
keywords = [
"lsp",
"language-server-protocol",
"ide",
"development-tools",
"editor-tools",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/mazyod/lsp-python-types"
Repository = "https://github.com/mazyod/lsp-python-types"
Documentation = "https://github.com/mazyod/lsp-python-types#readme"
[project.optional-dependencies]
pyrefly = [
"pyrefly>=0.32.0",
]
ty = [
"ty>=0.0.15",
]
zuban = [
"zuban>=0.7.0",
]
[dependency-groups]
dev = [
"pytest>=9.0.0,<10",
"pytest-cov>=7.0.0,<8",
"pytest-asyncio>=1.0.0",
"datamodel-code-generator>=0.53.0",
"httpx>=0.28.1",
"rich>=14.2.0",
]
[tool.hatch.build.targets.sdist]
include = ["lsp_types"]
[tool.hatch.build.targets.wheel]
include = ["lsp_types"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
# log_cli = true
# log_cli_level = "DEBUG"
[tool.coverage.run]
source = ["lsp_types"]
omit = ["tests/*", "assets/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise NotImplementedError",
"raise ImportError",
"if __name__ == .__main__.:",
"pass",
"\\.\\.\\.",
]