-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 1.01 KB
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "yalafi-ls"
version = "0.0.1"
authors = [{"name" = "torik42"}]
description = "YaLafi LSP server for spellchecking LaTeX documents"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Markup :: LaTeX",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
]
dependencies = [
"lsprotocol",
"pygls ~= 1.0",
"yalafi",
]
[project.urls]
"Homepage" = "https://github.com/torik42/YaLafi-LS"
"Changelog" = "https://github.com/torik42/YaLafi-LS/blob/main/HISTORY.md"
"Documentation" = "https://github.com/torik42/YaLafi-LS"
"Issue Tracker" = "https://github.com/torik42/YaLafi-LS/issues"
[tool.setuptools.packages.find]
include = ["yalafi_ls*"]
[tool.pylint.main]
disable = [
"unused-argument",
]