forked from rupert/pyls-black
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
34 lines (28 loc) · 770 Bytes
/
setup.cfg
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
[metadata]
name = pyls-black
version = 0.4.6
author = Rupert Bedford
author_email = [email protected]
description = Black plugin for the Python Language Server
url = https://github.com/rupert/pyls-black
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Programming Language :: Python
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find:
install_requires = python-lsp-server; black>=19.3b0; toml
python_requires = >= 3.6
[options.entry_points]
pyls = pyls_black = pyls_black.plugin
[options.extras_require]
dev = isort>=5.0; flake8; pytest; mypy; pytest
[flake8]
max-line-length = 88
ignore = E203
[mypy]
ignore_missing_imports = true
[isort]
profile = black