start lsp proj
This commit is contained in:
parent
975dd39437
commit
518f2df5c8
|
|
@ -0,0 +1,2 @@
|
||||||
|
def main() -> None:
|
||||||
|
pass
|
||||||
|
|
@ -1,10 +1,23 @@
|
||||||
|
[build-system]
|
||||||
|
requires = ['setuptools>=57', "wheel"]
|
||||||
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "mrpy-nvim"
|
name = "mrpy-lsp"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = "Add your description here"
|
description = "Clickup/Gitlab LSP"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.11"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"pynvim~=0.6.0",
|
"pygls~=2.0",
|
||||||
"requests>=2.32.5",
|
|
||||||
]
|
]
|
||||||
|
authors = [
|
||||||
|
{ name = "Patrick Nisble", email = "acereca@outlook.de"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[project.scripts]
|
||||||
|
mrpy-lsp = "mrpy.main:main"
|
||||||
|
|
||||||
|
[tool.setuptools.package.find]
|
||||||
|
include = ['mrpy']
|
||||||
|
namespaces = false
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue