-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (36 loc) · 908 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
38
39
40
41
42
43
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python-lsp-isort"
version = "0.2.0"
authors = [
{name = "Hiroki Teranishi", email = "teranishi.hiroki@gmail.com"}
]
description = "isort plugin for the Python LSP Server"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.7"
dependencies = [
"python-lsp-server",
"isort>=5.0",
]
[project.urls]
Homepage = "https://github.com/chantera/python-lsp-isort"
"Bug Tracker" = "https://github.com/chantera/python-lsp-isort/issues"
[project.optional-dependencies]
dev = ["pytest"]
[project.entry-points.pylsp]
isort = "pylsp_isort.plugin"
[tool.hatch.build]
exclude = ["/tests"]
only-packages = true
[tool.hatch.build.targets.wheel]
packages = ["pylsp_isort"]
[tool.flake8]
max-line-length = 88
extend-ignore = "E203"
[tool.mypy]
ignore_missing_imports = true
[tool.isort]
profile = "black"