File tree Expand file tree Collapse file tree 3 files changed +38
-43
lines changed Expand file tree Collapse file tree 3 files changed +38
-43
lines changed Original file line number Diff line number Diff line change
1
+ [build-system ]
2
+ requires = [" setuptools" ]
3
+ build-backend = " setuptools.build_meta"
4
+
5
+ [project ]
6
+ name = " python-lsp-isort"
7
+ version = " 0.1"
8
+ authors = [
9
+ {
name =
" Hiroki Teranishi" ,
email =
" [email protected] " }
10
+ ]
11
+ description = " isort plugin for the Python LSP Server"
12
+ readme = " README.md"
13
+ license = {text = " MIT" }
14
+ requires-python = " >=3.7"
15
+ dependencies = [
16
+ " python-lsp-server" ,
17
+ " isort>=5.0" ,
18
+ ]
19
+
20
+ [project .urls ]
21
+ Homepage = " https://github.com/chantera/python-lsp-isort"
22
+ "Bug Tracker" = " https://github.com/chantera/python-lsp-isort/issues"
23
+
24
+ [project .optional-dependencies ]
25
+ dev = [" pytest" ]
26
+
27
+ [project .entry-points .pylsp ]
28
+ isort = " pylsp_isort.plugin"
29
+
30
+ [tool .flake8 ]
31
+ max-line-length = 88
32
+ extend-ignore = " E203"
33
+
34
+ [tool .mypy ]
35
+ ignore_missing_imports = true
36
+
37
+ [tool .isort ]
38
+ profile = " black"
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments