You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
632 B
Python
20 lines
632 B
Python
from .utils import ShellSpec
|
|
|
|
|
|
class JediLanguageServer(ShellSpec):
|
|
key = cmd = "jedi-language-server"
|
|
languages = ["python"]
|
|
spec = dict(
|
|
display_name="jedi-language-server",
|
|
mime_types=["text/python", "text/x-ipython"],
|
|
urls=dict(
|
|
home="https://github.com/pappasam/jedi-language-server",
|
|
issues="https://github.com/pappasam/jedi-language-server/issues",
|
|
),
|
|
install=dict(
|
|
pip="pip install -U jedi-language-server",
|
|
conda="conda install -c conda-forge jedi-language-server",
|
|
),
|
|
env=dict(PYTHONUNBUFFERED="1"),
|
|
)
|