start lsp proj

This commit is contained in:
Patrick Nisble 2026-01-21 08:39:51 +01:00
parent 975dd39437
commit 518f2df5c8
3 changed files with 19 additions and 4 deletions

0
mrpy/__init__.py Normal file
View File

2
mrpy/main.py Normal file
View File

@ -0,0 +1,2 @@
def main() -> None:
pass

View File

@ -1,10 +1,23 @@
[build-system]
requires = ['setuptools>=57', "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mrpy-nvim"
name = "mrpy-lsp"
version = "0.1.0"
description = "Add your description here"
description = "Clickup/Gitlab LSP"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pynvim~=0.6.0",
"requests>=2.32.5",
"pygls~=2.0",
]
authors = [
{ name = "Patrick Nisble", email = "acereca@outlook.de"},
]
[project.scripts]
mrpy-lsp = "mrpy.main:main"
[tool.setuptools.package.find]
include = ['mrpy']
namespaces = false