Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
```
Comment thread
wakonig marked this conversation as resolved.

**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:
Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading