diff --git a/README.md b/README.md index 5e1e689..d1c8da6 100644 --- a/README.md +++ b/README.md @@ -20,12 +20,12 @@ QTMonaco requires either PySide6 or PyQt6 as a Qt backend. Install with your pre **With PySide6 (recommended):** ```bash -pip install qtmonaco[pyside6] +pip install qtmonaco[all,pyside6] ``` **With PyQt6:** ```bash -pip install qtmonaco[pyqt6] +pip install qtmonaco[all,pyqt6] ``` If you already have a Qt framework installed, you can install QTMonaco without the extra dependencies: diff --git a/pyproject.toml b/pyproject.toml index 87b58f6..7256f0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,9 +12,13 @@ classifiers = [ "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering", ] -dependencies = ["qtpy~=2.4", "python-lsp-server[all,websockets] ~= 1.12"] +dependencies = [ + "qtpy~=2.4", + "python-lsp-server[autopep8, flake8, mccabe, pycodestyle, pydocstyle, pyflakes, rope, yapf,websockets] ~= 1.12", +] [project.optional-dependencies] +all = ["python-lsp-server[all, websockets] ~= 1.12"] dev = [ "coverage~=7.0", "isort~=5.13, >=5.13.2",