-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (31 loc) · 1003 Bytes
/
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
[tool.poetry]
name = 'systemd-language-server'
version = '0.3.5'
description = 'Language server for systemd unit files'
authors = ["Paweł Sacawa <[email protected]>"]
readme = "README.md"
packages = [{ include = "systemd_language_server" }]
scripts = { "systemd-language-server" = "systemd_language_server.server:main" }
keywords = ['systemd', 'language', 'server', 'lsp', 'completion']
license = "GPL3.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
"Topic :: Utilities",
]
repository = "https://github.com/psacawa/systemd-language-server"
[tool.poetry.dependencies]
pygls = "^1.3"
python = "^3.9"
lxml = "^5.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"