-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.cfg
47 lines (41 loc) · 1.25 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
[metadata]
name = python-lsp-black
version = 2.1.0.dev0
author = Python LSP contributors
author_email = [email protected]
description = Black plugin for the Python LSP Server
url = https://github.com/python-lsp/python-lsp-black
long_description = file: README.md
long_description_content_type = text/markdown
project_urls =
Bug Tracker = https://github.com/python-lsp/python-lsp-black/issues
Changelog = https://github.com/python-lsp/python-lsp-black/blob/master/CHANGELOG.md
Source Code = https://github.com/python-lsp/python-lsp-black
classifiers =
Programming Language :: Python
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find:
install_requires =
python-lsp-server>=1.4.0
black>=23.11.0
tomli; python_version<'3.11'
tests_require =
black>=24.2.0
python_requires = >= 3.8
[options.entry_points]
pylsp = black = pylsp_black.plugin
[options.extras_require]
# add any types-* packages to .pre-commit-config.yaml mypy additional_dependencies
dev = isort>=5.0; flake8; pre-commit; pytest; mypy; pytest; types-pkg_resources; types-setuptools
[flake8]
max-line-length = 88
ignore = E203
exclude =
.venv
[mypy]
ignore_missing_imports = true
[isort]
profile = black
skip_glob = [".venv"]