-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.26 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
38
39
40
41
42
43
44
45
46
47
[project]
name = "anakin-language-server"
dynamic = ["version"]
description = "Yet another Jedi Python language server"
readme = "README.md"
requires-python = ">=3.7.16"
dependencies = [
"jedi>=0.19.0",
"pygls>=1.3,<1.4",
"pyflakes~=2.2",
"pycodestyle~=2.5",
"yapf~=0.30",
]
license = {file = "LICENSE"}
authors = [{name = "Andrii Kolomoiets", email = "[email protected]"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
]
[project.urls]
"Homepage" = "https://github.com/muffinmad/anakin-language-server"
"Bug Reports" = "https://github.com/muffinmad/anakin-language-server/issues"
"Source" = "https://github.com/muffinmad/anakin-language-server"
[project.scripts]
anakinls = "anakinls.__main__:main"
[tool.setuptools.dynamic]
version = {attr = "anakinls.version.__version__"}
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.ruff.lint.isort]
split-on-trailing-comma = false
[tool.ruff.format]
quote-style = "single"
skip-magic-trailing-comma = true