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
|
[metadata]
name = pylsp-mypy
author = Richard Kellnberger, Tom van Ommeren
description = Mypy linter for the Python LSP Server
url = https://github.com/python-lsp/pylsp-mypy
long_description = file: README.rst
license='MIT'
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Software Development
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
[options]
python_requires = >= 3.9
packages = find:
install_requires =
python-lsp-server >=1.7.0
mypy >= 0.981
tomli >= 1.1.0 ; python_version < "3.11"
[flake8]
max-complexity = 20
max-line-length = 100
[options.entry_points]
pylsp = pylsp_mypy = pylsp_mypy.plugin
[options.extras_require]
test =
tox
pytest
pytest-cov
coverage
[options.packages.find]
exclude =
contrib
docs
test
|