Metadata-Version: 2.4
Name: pylspclient
Version: 0.1.1
Summary: LSP client implementation in Python
License-File: LICENSE
Author: yeger00
Author-email: yeger00@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: pydantic (>=2.5.2,<3.0.0)
Description-Content-Type: text/markdown

# pylspclient
[![image](https://img.shields.io/pypi/v/pylspclient.svg)](https://pypi.org/project/pylspclient/)
[![Test Package](https://github.com/yeger00/pylspclient/actions/workflows/test-pkg.yml/badge.svg)](https://github.com/yeger00/pylspclient/actions/workflows/test-pkg.yml)
[![image](https://img.shields.io/github/license/python-ls/python-ls.svg)](https://github.com/yeger00/pylspclient/blob/main/LICENSE)

A Python 3.10+ implemntation of a [LSP](https://microsoft.github.io/language-server-protocol/) client.


# What is LSP?


# Getting started
## Installation
```
pip install pylspclient
```

# Contributing
In order to contribute you need to make sure your PR passes all the [Test Package](https://github.com/yeger00/pylspclient/blob/main/.github/workflows/test-pkg.yml) steps.
All the development related commands are wrap with Makefile just for easy access from both the development environment and from the workflows. You can see that most of the commands are only 1 line and you can run them directly.
You can run it locally as well:

## Run the tests
```
make test
```

## Run the linter
```
make lint
```

## New release
```
make bump
make build
make publish
```

# License
This project is made available under the MIT License.

