Skip to content

Commit 7754ca3

Browse files
committed
Add pyproject.toml.
1 parent 5acc8ef commit 7754ca3

File tree

3 files changed

+38
-43
lines changed

3 files changed

+38
-43
lines changed

pyproject.toml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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"

setup.cfg

Lines changed: 0 additions & 39 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)