-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 887 Bytes
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 887 Bytes
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pywire-language-server"
authors = [
{ name="Reece Holmdahl", email="reece@pywire.dev" },
]
dynamic = ["version"]
description = "Language Server Protocol implementation for PyWire"
requires-python = ">=3.11"
dependencies = [
"pygls>=1.3.0",
"ty>=0.0.15",
"pywire",
]
[project.scripts]
pywire-lsp = "pywire_language_server.server:start"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"coverage>=7.3.0",
"nox",
"ruff>=0.1.0",
"ty",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.hatch.build.targets.wheel]
packages = ["src/pywire_language_server"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/pywire_language_server/_version.py"